-
Notifications
You must be signed in to change notification settings - Fork 73
/
.prospector.yaml
106 lines (96 loc) · 1.55 KB
/
.prospector.yaml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
strictness: veryhigh
doc-warnings: true
member-warnings: false
test-warnings: false
ignore-patterns:
- (^|/)\..+
- .*\.html
- docs/.*
- tmp\.py
- setup\.py
- hubspot3\/test\/.*
pylint:
disable:
- bad-continuation
- broad-except
- import-error
- import-self
- logging-format-interpolation
- logging-fstring-interpolation
- missing-docstring
- no-self-use
- unused-argument
- protected-access
- cyclic-import
- import-outside-toplevel
- unnecessary-comprehension
- unsubscriptable-object
# TODO the one below should be removed after some time
- super-with-arguments
- use-dict-literal
- broad-exception-raised
options:
max-args: 12
max-locals: 100
max-returns: 6
max-branches: 50
max-statements: 180
max-parents: 10
max-attributes: 10
min-public-methods: 0
max-public-methods: 40
max-module-lines: 2000
max-line-length: 100
mccabe:
options:
max-complexity: 30
pycodestyle:
disable:
- N802
- N807
- N813
- N818
- W503
- W605
- E203
options:
max-line-length: 100
single-line-if-stmt: n
vulture:
run: false
pyroma:
run: false
bandit:
run: false
pydocstyle:
disable:
- D000
- D100
- D101
- D102
- D103
- D104
- D105
- D107
- D200
- D202
- D203
- D204
- D205
- D212
- D300
- D400
- D401
- D403
- D404
- D407
- D411
- D413
- D415
- D416
- D417
pyflakes:
disable:
- F401
- F403
- F999