forked from datacenter/cobra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.landscape.yaml
39 lines (36 loc) · 888 Bytes
/
.landscape.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
doc-warnings: yes
test-warnings: no
strictness: veryhigh
max-line-length: 80
autodetect: yes
ignore-paths:
- docs
ignore-patterns:
- (^|/)docs(/|$)
mccabe:
disable:
- MC0001
pep8:
disable:
- N803
- N802
- N806
pylint:
disable:
- star-args
options:
include-naming-hint: yes
function-rgx: "[a-z_][a-zA-Z0-9_]{2,30}$"
function-name-hint: "[a-z_][a-zA-Z0-9_]{2,30}$"
variable-rgx: "[a-z_][a-zA-Z0-9_]{1,30}$"
variable-name-hint: "[a-z_][a-zA-Z0-9_]{1,30}$"
attr-rgx: "[a-z_][a-zA-Z0-9_]{1,30}$"
attr-name-hint: "[a-z_][a-zA-Z0-9_]{1,30}$"
argument-rgx: "[a-z_][a-zA-Z0-9_]{1,30}$"
argument-name-hint: "[a-z_][a-zA-Z0-9_]{1,30}$"
method-rgx: "[a-z_][a-zA-Z0-9_]{1,30}$"
method-name-hint: "[a-z_][a-zA-Z0-9_]{1,30}$"
max-module-lines: 2500
max-locals: 15
max-attributes: 7
min-public-methods: 0