Skip to content

Commit

Permalink
Added .flake8
Browse files Browse the repository at this point in the history
TODO: Remove tox support
  • Loading branch information
dssecret committed Dec 12, 2023
1 parent 7a148a2 commit facfebe
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[flake8]
exclude = ./.tox,./.git,__pycache__,./venv,./docs
max-line-length = 120
extend-ignore =
# E203: Black autoformatting
E203,
# E266: multiple # in comment
E266,
# E402: invocation of ddtrace and other packages before normal packages
E402,
# E501: line too long
E501,
# F401: ?
F401,
# E712: peewee query (? == True)
E712

0 comments on commit facfebe

Please sign in to comment.