Skip to content

Commit c3835a3

Browse files
committed
flake8 config
1 parent f302b39 commit c3835a3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.flake8

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)