-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.prospector.yml
More file actions
55 lines (47 loc) · 1.04 KB
/
.prospector.yml
File metadata and controls
55 lines (47 loc) · 1.04 KB
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
output-format: grouped
strictness: veryhigh
doc-warnings: true
test-warnings: false
dodgy:
run: true
frosted:
run: true
mccabe:
run: true
pylint:
run: true
disable:
- bad-builtin
- import-error
- import-outside-toplevel
- line-too-long # Line length is check py Flake8.
- missing-docstring
- star-args
- superfluous-parens
- too-few-public-methods
- wrong-import-order
- wrong-import-position
- W0142 # Used * or ** magic
options:
good-names: _,i,j,k,v,e,db,fn,fp,log,parser,id,f,g,d,df
pep8:
run: true
disable:
- E126
pep257:
run: true
disable:
- D100 # Missing docstring in public module
- D101 # Missing docstring in public class
- D102 # Missing docstring in public method
- D103 # Missing docstring in public function
- D203
- D212 # Multi-line docstring summary should start at the first line
- D213 # Multi-line docstring summary should start at the second line
- D400
- D401
- D404
pyflakes:
run: true
pyroma:
run: true