Skip to content

Commit

Permalink
Update setup.cfg (#65)
Browse files Browse the repository at this point in the history
Closes #64
  • Loading branch information
sujuka99 authored Jan 18, 2023
1 parent 28aafd6 commit 2a095ab
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[flake8]
ignore =
# E501: line too long
E501,
# W503: line break before binary operator
W503,
max-complexity = 10
exclude =
.git,
__pycache__
max-complexity = 10
# black docs regarding flake8: https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
# black enforces an equal amount of whitespace around slice operators. It is not PEP8 compliant.
# black and flake8 also disagree on line length
extend-ignore =
# E203: Whitespace before ':'
E203,
# E501: Line too long
E501,

[isort]
profile = black
Expand Down

0 comments on commit 2a095ab

Please sign in to comment.