We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f302b39 commit c3835a3Copy full SHA for c3835a3
.flake8
@@ -0,0 +1,18 @@
1
+[flake8]
2
+max-line-length = 125
3
+
4
+## IGNORES
5
6
+# E126: yapf conflicts with "continuation line over-indented for hanging indent"
7
8
+# E127: flake8 reporting incorrect continuation line indent errors
9
+# on multi-line and multi-level indents
10
11
+# W503: flake8 reports this as incorrect, and scripts/format_code
12
+# changes code to it, so let format_code win.
13
14
+ignore = E126,E127,W503
15
16
+exclude =
17
+ docs/build
18
+ .tox
0 commit comments