Skip to content

Commit

Permalink
Update flake8 config for stricter checks
Browse files Browse the repository at this point in the history
- Extend select with B950
- Ignore additional linting rules
- Reduce max line length to 80
- Keep max complexity at 12
- Comment out select option
  • Loading branch information
oldgithubman committed Oct 14, 2024
1 parent 38a90ae commit 8892e9d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[flake8]
ignore = D107,E501,SC200,W503
max-line-length = 88
extend-select = B950
ignore = D107,E203,E501,E701,SC200,W503
max-line-length = 80
max-complexity = 12
# select = B,C,E,F,W,T4,B901

0 comments on commit 8892e9d

Please sign in to comment.