diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..9a0d11a --- /dev/null +++ b/.flake8 @@ -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