From a8f9661626ee73823d2ca4f83d13b255cb10dd82 Mon Sep 17 00:00:00 2001 From: Richard Tang Date: Sun, 19 Apr 2026 13:19:01 -0700 Subject: [PATCH] chore: remove unused files --- .cursorrules | 18 ------------------ .dockerignore | 35 ----------------------------------- tsconfig.base.json | 24 ------------------------ 3 files changed, 77 deletions(-) delete mode 100644 .cursorrules delete mode 100644 .dockerignore delete mode 100644 tsconfig.base.json diff --git a/.cursorrules b/.cursorrules deleted file mode 100644 index db7b6d3c..00000000 --- a/.cursorrules +++ /dev/null @@ -1,18 +0,0 @@ -This project uses ruff for Python linting and formatting. - -Rules: -- Line length: 100 characters -- Python target: 3.11+ -- Use double quotes for strings -- Sort imports with isort (ruff I rules): stdlib, third-party, first-party (framework), local -- Combine as-imports -- Use type hints on all function signatures -- Use `from __future__ import annotations` for modern type syntax -- Raise exceptions with `from` in except blocks (B904) -- No unused imports (F401), no unused variables (F841) -- Prefer list/dict/set comprehensions over map/filter (C4) - -Run `make lint` to auto-fix, `make check` to verify without modifying files. -Run `make format` to apply ruff formatting. - -The ruff config lives in core/pyproject.toml under [tool.ruff]. diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index efb22d1c..00000000 --- a/.dockerignore +++ /dev/null @@ -1,35 +0,0 @@ -# Git -.git/ -.gitignore - -# Documentation -*.md -docs/ -LICENSE - -# IDE -.idea/ -.vscode/ - -# Dependencies (rebuilt in container) -node_modules/ - -# Build artifacts -dist/ -build/ -coverage/ - -# Environment files -.env* -config.yaml - -# Logs -*.log -logs/ - -# OS -.DS_Store -Thumbs.db - -# GitHub -.github/ diff --git a/tsconfig.base.json b/tsconfig.base.json deleted file mode 100644 index b348bb90..00000000 --- a/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "compilerOptions": { - "target": "ES2022", - "lib": ["ES2022"], - "module": "NodeNext", - "moduleResolution": "NodeNext", - "resolveJsonModule": true, - "declaration": true, - "declarationMap": true, - "sourceMap": true, - "strict": true, - "noImplicitAny": true, - "strictNullChecks": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "skipLibCheck": true, - "isolatedModules": true - } -}