forked from gimli-org/gimli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.landscape.yml
50 lines (45 loc) · 1.12 KB
/
.landscape.yml
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
# Landscape.io configuration file
# Only considers python directory at the moment.
# E-Mail notifications are sent if score decreases.
python-targets:
- 3
doc-warnings: yes
test-warnings: no
#strictness: veryhigh # besser nicht =)
strictness: medium
max-line-length: 80
autodetect: yes
ignore-paths:
- apps
- cmake
- doc
- examples
- external
- matlab
- mingw
- rpm
- thirdParty
- pygimli/gui
pylint:
disable:
- E1101 # avoids errors about missing C++ members in pygimli
- E0611 # avoids errors about missing C++ members in pygimli
- E0602 # avoids errors about unassigned function calls, i.e. _pygimli_.load
- R0204 #
- C0413 # module level import not at top of file
- E0401 #
options:
max-args: 10
max-locals: 50
max-branches: 50
max-statements: 100
max-attributes: 10
pep8:
disable:
- E402 # same as pylint C0413
pep257:
disable:
- D203 # conflicts with D211
pyflakes:
disable:
- F401 # imported module not used (mainly for __init__) pylint also checks this