-
Notifications
You must be signed in to change notification settings - Fork 915
/
setup.cfg
62 lines (53 loc) · 1.58 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
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ["_install/"]
[flake8]
min_python_version = 3.7.0
ignore =
# The list of error ignored is ordered by priority/easiness of the fix
# First to fix
## Invalid escape sequence; probably fixed by adding r to specify regex str
### invalid escape sequence
W605
## Undefined uses, Not used, etc
### local variable 'x' is assigned to but never used
F841
## New lines
### line break before binary operator, W503 is deprecated
W503
## Visual
### continuation line missing indentation or outdented
E122
### continuation line over-indented for hanging indent
E126
### continuation line over-indented for visual indent
E127
### continuation line under-indented for visual indent
E128
### visually indented line with same indent as next logical line
E129
### continuation line unaligned for hanging indent
E131
### continuation line with same indent as next logical line
E125
### closing bracket does not match visual indentation
E124
### closing bracket does not match indentation of opening bracket's line
E123
### continuation line under-indented for hanging indent
E121
### > 79 characters lines
E501
## Imports
### module level import not at top of file
E402
# Last to fix
exclude =
# tests was not originally in the pylint scope
# tests
# scripts has cscan for now, when deleted, we should add it
CHANGELOG
doc
# scripts has cscan for now, when deleted, we should add it
scripts