Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Update .flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
v0lta authored Sep 25, 2023
1 parent 25dbb09 commit fb92a64
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@
#########################
[flake8]
ignore =
S101 # asserts are ok when testing.
S301 # pickle
S403 # pickle
# asserts are ok when testing.
S101
S301
S403
S404
S603
W503 # Line break before binary operator (flake8 is wrong)
E203 # Ignore the spaces black puts before columns.
E402 # allow path extensions for testing.
W503
E203
E402
DAR101
DAR201
N400 # flake and pylance disagree on linebreaks in strings.
N400
exclude =
.tox,
.git,
Expand All @@ -34,4 +35,4 @@ max-complexity = 20
import-order-style = pycharm
application-import-names =
seleqt
tests
tests

0 comments on commit fb92a64

Please sign in to comment.