-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpylama.ini
57 lines (42 loc) · 1021 Bytes
/
pylama.ini
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
[pylama]
format = pylint
linters = pylint
# C0103 snake-case namin style
# C0114-C0116: missing docstr
# E1101 dynamic imports (especially falcon)
# E1102 not callable, false-positive on @property
# E1120 cache info
# W1203 non-lazy str-interpolation
# W0511 "xxx" comment
# W0702 bare `except`
# R0903 too few public methods
# R0913 too many formal parameters
# R0914 too many local variables
ignore = C0103,C0114,C0115,C0116,W0511,W1203,R0903,R0913,R0914
skip = test_*,test/*,.venv/*
[pylama:middleware/auth.py]
ignore = E1101
[pylama:osinfo/__init__.py]
ignore = E1101
[pylama:components.py]
ignore = E1101, E1102
[pylama:deliverydb/model.py]
ignore = E1102
[pylama:deliverydb/util.py]
ignore = E1101
[pylama:app.py]
ignore = E1101
[pylama:util.py]
ignore = E1101
[pylama:artefacts.py]
ignore = E1101
[pylama:rescore.py]
ignore = E1101
[pylama:special_component.py]
ignore = E1101
[pylama:compliance_tests.py]
ignore = E1101
[pylama:service_extensions.py]
ignore = E1101
[pylama:dora.py]
ignore = E1101