-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
72 lines (50 loc) · 1.36 KB
/
.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
[flake8]
# !!! BRING THE PAIN !!!
select = A,B,B9,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z
show-source = True
doctests = True
max-line-length = 80
extend-exclude =
.git,
.tox,
__pycache__,
dist
# Codes: https://flake8.pycqa.org/en/latest/user/error-codes.html
extend-ignore =
# Do not perform calls in argument defaults
# (Necessary for cast())
B008,
# Missing docstring in magic method
D105,
# One-line docstring should fit on one line with quotes
D200,
# 1 blank line required between summary line and description
D205,
# First line should end with a period
D400,
# First line should be in imperative mood
D401,
# whitespace before ':'
#E203,
# missing whitespace around operator
E225,
# missing whitespace after ','
#E231,
# function name should be lowercase
N802,
# argument name should be lowercase
N803,
# variable in function should be lowercase
N806,
# lowercase imported as non lowercase
N812,
# variable in class scope should not be mixedCase
N815,
# variable in global scope should not be mixedCase
N816,
# line break before binary operator
W503,
# End of list (allows last item to end with trailing ',')
EOL
# flake8-import-order: local module name space
application-import-names = transmission