Initial commit.

This commit is contained in:
James Smith 2023-01-26 07:43:08 +02:00
commit 6166b42b2e
6 changed files with 219 additions and 0 deletions

12
.flake8 Normal file
View 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)