Skip to content

Commit

Permalink
Flake8: Remove useless ignores (#9760)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiblik authored Mar 27, 2024
1 parent 0094014 commit 06fc31e
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,14 @@ ignore =
C901
# Bare except
E722
# May be undefined
F405
# list comprehension redefines
F812
E126
E128
# Line break occurred before a binary operator (conflicting with black)
W503
# undefined file name excpetion
F821


exclude =
# No need to traverse our git directory
.git,
# Exclude unittests
dojo/unittests,
# There's no value in checking cache directories
__pycache__,
# This contains of branch that we don't want to check
# dev

# We should not touch migrations that are already used, but check new migrations
per-file-ignores =
dojo/db_migrations/00*:F841
dojo/db_migrations/01*:F841

max-complexity = 10

0 comments on commit 06fc31e

Please sign in to comment.