-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.flake8
More file actions
22 lines (19 loc) · 780 Bytes
/
.flake8
File metadata and controls
22 lines (19 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[flake8]
builtins = _,pgettext
ignore = E722,W191,W293,W503
# E722 do not use bare except, specify exception instead
# W191 indentation contains tabs
# W293 blank line contains whitespace
# W503 line break before binary operator
# This configuration overrides the following defaults for flake8 3.5.0
# ignore = E121,E123,E126,E226,E24,E704,W503,W504
#
# E121 continuation line under-indented for hanging indent
# E123 losing bracket does not match indentation of opening bracket’s line
# E126 continuation line over-indented for hanging indent
# E226 missing whitespace around operator
# E241 multiple spaces after ‘,’
# E242 tab after ‘,’
# E704 multiple statements on one line (def)
# W503 line break before binary operator
# W504 line break after binary operator