-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy path.pep8
49 lines (34 loc) · 1.66 KB
/
.pep8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[pep8]
# List of PEP8 Errors and Warnings to Ignore
# E501 line too long (82 > 79 characters)
# Most of the Indentation continuation rules are ignored (short of the mixed spaces and tabs)
# E121 continuation line indentation is not a multiple of four
# E122 continuation line missing indentation or outdented
# E123 closing bracket does not match indentation of opening bracket’s line
# E124 closing bracket does not match visual indentation
# E125 continuation line does not distinguish itself from next logical line
# E126 continuation line over-indented for hanging indent
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# Whitespace
# E261 at least two spaces before inline comment
ignore = E501,E12,E261
exclude = migrations
[flake8]
# List of PEP8 Errors and Warnings to Ignore
# E501 line too long (82 > 79 characters)
# Most of the Indentation continuation rules are ignored (short of the mixed spaces and tabs)
# E121 continuation line indentation is not a multiple of four
# E122 continuation line missing indentation or outdented
# E123 closing bracket does not match indentation of opening bracket’s line
# E124 closing bracket does not match visual indentation
# E125 continuation line does not distinguish itself from next logical line
# E126 continuation line over-indented for hanging indent
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# Whitespace
# E261 at least two spaces before inline comment
# PyFlakes
# F403 unable to detect undefined names (from whatever import *)
ignore = E501,E12,E261,F403
exclude = migrations