File tree 3 files changed +18
-12
lines changed
3 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ plugins:
15
15
enabled : false
16
16
config :
17
17
file : .rubocop.yml
18
- channel : " rubocop-0-76 " # need to keep this value the same as rubocop version
18
+ channel : " rubocop-0-80 " # need to keep this value the same as rubocop version
19
19
# https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
20
20
eslint :
21
21
enabled : true
Original file line number Diff line number Diff line change @@ -21,32 +21,32 @@ AllCops:
21
21
Layout/MultilineOperationIndentation :
22
22
EnforcedStyle : indented
23
23
24
- AlignParameters :
24
+ Layout/ParameterAlignment :
25
25
Enabled : false
26
26
27
- ClassLength :
27
+ Metrics/ ClassLength :
28
28
CountComments : false
29
29
Max : 150
30
30
31
- ModuleLength :
31
+ Metrics/ ModuleLength :
32
32
CountComments : false
33
33
Max : 250
34
34
Exclude :
35
35
- ' **/spec/**/*'
36
36
37
- Documentation :
37
+ Style/ Documentation :
38
38
Enabled : false
39
39
40
- Metrics /LineLength :
40
+ Layout /LineLength :
41
41
Max : 150
42
42
Exclude :
43
43
- ' **/spec/**/*'
44
44
45
- MethodLength :
45
+ Metrics/ MethodLength :
46
46
CountComments : false
47
47
Max : 50
48
48
49
- BlockLength :
49
+ Metrics/ BlockLength :
50
50
CountComments : false
51
51
Max : 50
52
52
Exclude :
@@ -101,9 +101,6 @@ Style/IfUnlessModifier:
101
101
Naming/VariableNumber :
102
102
Enabled : false
103
103
104
- Performance/RegexpMatch :
105
- Enabled : false
106
-
107
104
Style/RedundantPercentQ :
108
105
Enabled : false
109
106
@@ -126,6 +123,15 @@ Style/AndOr:
126
123
Exclude :
127
124
- ' **/*controller.rb'
128
125
126
+ Style/HashEachMethods :
127
+ Enabled : false
128
+
129
+ Style/HashTransformKeys :
130
+ Enabled : false
131
+
132
+ Style/HashTransformValues :
133
+ Enabled : false
134
+
129
135
RSpec/NestedGroups :
130
136
Max : 7
131
137
Original file line number Diff line number Diff line change 36
36
end
37
37
38
38
group :test , :development do
39
- gem 'rubocop' , '~> 0.76 .0' , require : false # bumped
39
+ gem 'rubocop' , '~> 0.80 .0' , require : false # bumped
40
40
gem 'rubocop-rspec' , require : false
41
41
gem 'pry-byebug'
42
42
gem 'webdrivers' , '~> 4.1'
You can’t perform that action at this time.
0 commit comments