Skip to content

Commit

Permalink
add Flake8 config file
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrawnCA committed Sep 16, 2022
1 parent 98a8166 commit 3ab9c1f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[flake8]
# @see https://flake8.pycqa.org/en/latest/user/configuration.html?highlight=.flake8

exclude =
ckan
.git

# Extended output format.
format = pylint

# Show the source of errors.
show_source = True

max-complexity = 10
max-line-length = 127

# List ignore rules one per line.
ignore =
C901
W503

0 comments on commit 3ab9c1f

Please sign in to comment.