-
Notifications
You must be signed in to change notification settings - Fork 27
/
.flake8
74 lines (72 loc) · 837 Bytes
/
.flake8
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
[flake8]
ignore =
ANN101,
ANN002,
ANN003,
ANN200,
ANN203,
B007,
B950,
E101,
E111,
E114,
E116,
E117,
E121,
E122,
E123,
E124,
E125,
E126,
E127,
E128,
E131,
E201,
E202,
E203,
E211,
E221,
E222,
E223,
E224,
E225,
E226,
E228,
E231,
E241,
E242,
E251,
E261,
E262,
E265,
E266,
E271,
E272,
E273,
E274,
E301,
E302,
E303,
E305,
E306,
E401,
E402,
E501,
E502,
E701,
E702,
E703,
E741,
F403,
F841,
W191,
W291,
W292,
W293,
W391,
W503,
W504,
per-file-ignores =
# syntax: [comma-separated path/to/file: comma-separated ERROR CODES]
__init__.py, hooks.py: F401
max-line-length = 100