- Added @eslint/js dependency - Updated eslint.config.js for ESLint 9 compatibility - Added required globals (crypto, localStorage, React, etc.) - Fixed unused imports and variables - Disabled sort-imports temporarily - Formatted all files with Prettier
20 lines
431 B
YAML
20 lines
431 B
YAML
# .aider.conf.yml — Aider Configuration for @bytelyst Common Platform
|
|
# Helps Aider understand the project structure and conventions.
|
|
|
|
# Tell Aider to read these files for context
|
|
read:
|
|
- AGENTS.md
|
|
- README.md
|
|
|
|
# Convention file
|
|
conventions: AGENTS.md
|
|
|
|
# Lint commands
|
|
lint-cmd:
|
|
- 'pnpm build 2>&1 | tail -10'
|
|
- 'pnpm test 2>&1 | tail -10'
|
|
- 'pnpm typecheck 2>&1 | tail -10'
|
|
|
|
# Auto-commit settings
|
|
auto-commits: false
|