File tree Expand file tree Collapse file tree 2 files changed +29
-52
lines changed Expand file tree Collapse file tree 2 files changed +29
-52
lines changed Original file line number Diff line number Diff line change 1
- inherit_from : .rubocop_todo.yml
2
-
3
1
AllCops :
4
2
TargetRubyVersion : 2.6
5
3
NewCops : enable
6
4
7
5
Layout/FirstArrayElementIndentation :
8
6
EnforcedStyle : consistent
9
7
10
- Style/StringLiterals :
11
- EnforcedStyle : double_quotes
12
-
13
- Metrics/BlockLength :
14
- Exclude :
15
- - spec/**/*
16
- - " *.gemspec"
17
-
18
8
Naming/MethodParameterName :
19
9
MinNameLength : 2
20
10
AllowedNames :
@@ -25,13 +15,41 @@ Naming/FileName:
25
15
Exclude :
26
16
- ' gemfiles/*.gemfile'
27
17
18
+ Style/StringLiterals :
19
+ EnforcedStyle : double_quotes
20
+
28
21
Style/MultilineBlockChain :
29
22
Exclude :
30
23
- spec/**/*
31
24
32
- Metrics/ModuleLength :
25
+ Style/Documentation :
26
+ Enabled : false
27
+
28
+ Metrics/BlockLength :
33
29
Exclude :
34
30
- spec/**/*
31
+ - " *.gemspec"
35
32
36
33
Metrics/ParameterLists :
37
34
Max : 6
35
+
36
+ Metrics/AbcSize :
37
+ Max : 66
38
+
39
+ Metrics/ClassLength :
40
+ Max : 258
41
+
42
+ Metrics/CyclomaticComplexity :
43
+ Max : 14
44
+
45
+ Metrics/MethodLength :
46
+ Max : 52
47
+
48
+ Metrics/ModuleLength :
49
+ Exclude :
50
+ - spec/**/*
51
+ Max : 602
52
+
53
+ Metrics/PerceivedComplexity :
54
+ Max : 14
55
+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments