forked from CamDavidsonPilon/lifelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prospector.yaml
49 lines (42 loc) · 819 Bytes
/
.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
strictness: medium
pylint:
options:
bad-names: foo,baz,toto,tutu,tata,data
# max-args default = 5
max-args: 15
# max-locals default = 15
max-locals: 50
# max-branches default = 15
max-branches: 16
disable:
- line-too-long
- protected-access
- no-value-for-parameter
- assignment-from-no-return
- invalid-unary-operand-type
# remove if python2.7 support is dropped
- useless-object-inheritance
- old-style-class
pyflakes:
disable:
- F401
- F841
# let pylint used-before-assignment handle this
- F821
pep8:
options:
max-line-length: 130
disable:
- E501
- E241
mccabe:
options:
# max-complexity default = 10
max-complexity: 23
pyroma:
run: true
pep257:
run: false
ignore-paths:
- build
- benchmarks