forked from stellargraph/stellargraph
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.codeclimate.yml
57 lines (47 loc) · 827 Bytes
/
.codeclimate.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
51
52
53
54
55
56
57
---
version: "2"
checks:
argument-count:
enabled: false
file-lines:
enabled: false
method-complexity:
enabled: false
method-count:
enabled: false
method-lines:
enabled: false
similar-code:
enabled: false
plugins:
bandit:
enabled: true
radon:
enabled: false
sonar-python:
enabled: true
checks:
# number of function parameters
python:S107:
enabled: false
# cognitive complexity
python:S3776:
enabled: false
# FIXME comments
python:S1134:
enabled: false
exclude_patterns:
# default exclude patterns:
- "config/"
- "db/"
- "dist/"
- "features/"
- "**/node_modules/"
- "script/"
- "**/spec/"
- "**/test/"
- "**/tests/"
- "Tests/"
- "**/vendor/"
- "**/*_test.go"
- "**/*.d.ts"