mirror of
https://codeberg.org/james-smith-za/git-tidy-python.git
synced 2026-01-15 19:29:25 +02:00
Initial commit.
This commit is contained in:
commit
6166b42b2e
6 changed files with 219 additions and 0 deletions
12
.flake8
Normal file
12
.flake8
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
[flake8]
|
||||
max-line-length = 120
|
||||
exclude = .venv
|
||||
|
||||
# specify which checks to enable
|
||||
select =
|
||||
C, # complexity checks
|
||||
E, # pep8 errors
|
||||
F, # pyflakes fatals
|
||||
W, # pep8 warnings
|
||||
B, # bugbear checks for design issues (requires flake8-bugbear)
|
||||
N # pep8 naming (requires pep8-naming)
|
||||
Loading…
Add table
Add a link
Reference in a new issue