-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
58 lines (49 loc) · 1009 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[flake8]
exclude = __pycache__
ignore =
# missing self annotation
ANN101,ANN102,
# docstring can one line
D200,
# blanks after docstring
D202,D204,
# too many blank lines
E303,
# use of assert detected
S101,
# assert should not be used
SCS108,
# string literal f-string
SFS301,
# newline before operator
W503,
per-file-ignores =
# LIT001 use single quotes
# LIT003 use single quotes
# SIM114 simplify condition
# SIM908 use dict get method
makebadge.py:LIT003,
enrobie/conftest.py:LIT003,
enrobie/plugins/status/helpers.py:LIT001,
enrobie/robie/addons/logger.py:SIM114,
enrobie/robie/config.py:SIM908,
[mypy]
strict = True
[coverage:report]
exclude_lines =
NOCVR
NCTrue
NCFalse
NCNone
if TYPE_CHECKING
if mqueue.qsize
if cqueue.qsize
if vacate.is_set
if cancel.is_set
raise NotImplementedError
raise InvalidChild
raise InvalidParam
raise DupliThread
except Exception
except DupliThread
self\.__status\('pending'\)