Commit 0f71dd5
committed
Simplify ruff configuration to essential rules only
Removed strict rules that require extensive refactoring:
- ANN (type annotations) - requires adding types everywhere
- N (naming conventions) - opinionated naming rules
- C4 (comprehensions) - style preferences
- SIM (simplifications) - aggressive simplifications
- ARG (unused arguments) - breaks handler patterns
Kept essential rules:
- E (pycodestyle errors)
- F (pyflakes - undefined names, unused imports)
- I (isort - import sorting)
- UP (pyupgrade - modern Python syntax)
- B (flake8-bugbear - likely bugs)1 parent 3f51247 commit 0f71dd5
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | | - | |
| 43 | + | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
0 commit comments