summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake817
1 files changed, 17 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 000000000..998f6ffec
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,17 @@
+[flake8]
+ignore =
+ # E203: whitespace before ':' (black fails to be PEP8 compliant)
+ E203
+ # E731: do not assign a lambda expression, use a def
+ E731
+ # W503: line break before binary operator (flake8 is not PEP8 compliant)
+ W503
+ # W504: line break after binary operator (flake8 is not PEP8 compliant)
+ W504
+exclude =
+ src/pyramid/compat.py
+ tests/fixtures
+ tests/pkgs
+ tests/test_config/pkgs
+ tests/test_config/path
+show-source = True