-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.cfg
91 lines (89 loc) · 1.49 KB
/
setup.cfg
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[flake8]
exclude =
.git,
.venv/,
./.venv/,
venv/,
vagrant_assets,
qgis-app/*/migrations/,
qgis-app/plugins/tests/HelloWorld/,
ignore =
# indentation is not a multiple of 4
E111,
E114,
# closing bracket
E121,
E122,
E123,
E124,
E125,
E126,
E127,
E128,
E129,
# continuation line unaligned for hanging indent
E131,
# missing whitespace
E201,
E202,
E203,
E211,
E221,
E222,
E225,
E226,
E231,
# multiple whitespace
E241,
# unexpected spaces around keyword
E251,
# inline comment
E261,
E262,
# block comment
E265,
# too many leading # for block comment
E266,
# multiple spaces after keyword
E271,
# expected 2 blank lines, found 1
E301,
E302,
E303,
E305,
# multiple imports
E401,
# module not at top of file
E402,
# line too long
E501,
# bare except
E722,
# ambiguous variable name
E741,
# import not used
F401,
# shadowed by loop variable
F402,
# star imports
F403,
F404,
F405,
# dictionary key 'created_by' repeated with different values
F601,
# redefinition
F811,
# local variable not used
F841,
# trailing whitespace
W291,
# no newline at end of file
W292,
# blank line at end of file
W391,
# line break before binary operator
W503,
W504,
# invalid escape sequence
W605,
max-line-length = 79