summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-07 14:11:48 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-15 21:14:28 +0100
commit01ee9180948d98455459440150622d53e0456987 (patch)
tree0b55afdc11335ce133076945f19541c2106cf8f3 /.flake8
parent44764d07cf5b16d248b992a031499d9026312f45 (diff)
downloadpylint-git-01ee9180948d98455459440150622d53e0456987.tar.gz
Add flake8 to the pre-commit configuration
Diffstat (limited to '.flake8')
-rw-r--r--.flake87
1 files changed, 7 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 000000000..13e17c35f
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,7 @@
+[flake8]
+ignore =
+ E203, W503, # Incompatible with black see https://github.com/ambv/black/issues/315
+ E501, # Lot of offending line right now
+
+max-line-length=88
+max-complexity=39