-
Notifications
You must be signed in to change notification settings - Fork 170
/
setup.cfg
41 lines (39 loc) · 951 Bytes
/
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
[tool:pytest]
filterwarnings =
ignore:deprecated.( use rosdistro instead| see REP137 and rosdistro):UserWarning:rosdep2
junit_suite_name = rosdep
markers =
flake8
linter
online
[flake8]
exclude =
conf.py,
.venv,
ignore =
# ignore presence of unnecessary generators
C402,
# ignore presence of unnecessary literals
C405,
# ignore presence of unnecessary comprehensions
C407,
# ignore presence of unnecessary tuple/list/dict
C408,
# ignore documentation related warnings
D,
# ignore presence of unused imports
F401,
# ignore presence of unused variables
F841,
# ignore import order related warnings
I,
# ignore presence of upper case in function names
N802,
# ignore line breaks after binary operator (new rule added in 2018)
W504,
max-line-length = 200
# due to complexity not being enforced before, 26 is the minimum for not
# throwing errors.
max-complexity = 26
[coverage:run]
source = rosdep2