summaryrefslogtreecommitdiffstats
path: root/.prospector.yml
blob: da97b0798f4166d51f6296bd9e35b9ce3546cfce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
strictness: medium

pylint:
  disable:
    - too-many-statements
    - too-many-locals
    - too-many-function-args
    - too-many-arguments
    - too-many-branches
    - bare-except
    - protected-access
    - no-else-return
    - unused-argument
    - method-hidden
    - arguments-differ
    - wrong-import-position
    - raising-bad-type

pep8:
  options:
    max-line-length: 79

mccabe:
  run: false