File tree 1 file changed +48
-0
lines changed
1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : " 2" # required to adjust maintainability checks
2
+
3
+ checks :
4
+ argument-count :
5
+ enabled : true
6
+ config :
7
+ threshold : 5
8
+ file-lines :
9
+ enabled : true
10
+ config :
11
+ threshold : 500
12
+ method-count :
13
+ enabled : true
14
+ config :
15
+ threshold : 20
16
+ method-lines :
17
+ enabled : true
18
+ config :
19
+ threshold : 50
20
+ return-statements :
21
+ enabled : true
22
+ config :
23
+ threshold : 8
24
+ similar-code :
25
+ enabled : true
26
+ config :
27
+ threshold : 400
28
+ identical-code :
29
+ enabled : true
30
+ config :
31
+ threshold : 100
32
+
33
+ exclude_patterns :
34
+ - " config/"
35
+ - " db/"
36
+ - " dist/"
37
+ - " features/"
38
+ - " **/node_modules/"
39
+ - " script/"
40
+ - " **/spec/"
41
+ - " **/test/"
42
+ - " **/tests/"
43
+ - " Tests/"
44
+ - " **/vendor/"
45
+ - " **/*_test.go"
46
+ - " **/*.d.ts"
47
+ - " **/fake/*.go"
48
+ - " **/*generated*.go"
You can’t perform that action at this time.
0 commit comments