-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.prospector.yaml
executable file
·97 lines (86 loc) · 1.28 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
#doc-warnings: true
#test-warnings: false
#strictness: medium
#max-line-length: 160
#uses:
#autodetect: true
#requirements:
#ignore-patterns:
# - ^.*kgui\.py$
# - ^.*doc\/conf\.py
#python-targets:
# - 3
#pylint:
# disable:
# - protected-access
autodetect: yes
strictness: medium
test-warnings: false
doc-warnings: true
ignore-paths:
- .git
- coverage
ignore-patterns:
- ^.*doc\/conf\.py
pep8:
run: true
enable:
- W601
disable:
- W605
- E741
- E742
- E743
options:
max-line-length: 120
single-line-if-stmt: false
pylint:
run: false
disable:
- E0402
- W0212
options:
max-args: 10
max-locals: 20
max-line-length: 160
max-module-lines: 2000
ignore-long-lines: ^\s*((# )?<?https?://\S+>?)|(""".*)$
pep257:
enable:
- D200
- D201
- D202
- D204
- D205
- D209
- D212
- D300
- D400
- D301
- D402
- D403
- D404
- D405
disable:
- D203
- D213
- D406
- D407
- D408
- D409
- D410
- D413
- D417
run: true
pyroma:
run: true
mccabe:
run: true
options:
max-complexity: 15
dodgy:
run: false
pyflakes:
run: true
frosted:
run: true