File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
AllCops :
3
- TargetRubyVersion : 2.3
3
+ TargetRubyVersion : 2.4
4
4
Exclude :
5
5
- vendor/**/*
6
6
7
- Layout/AlignArray :
7
+ Layout/ArrayAlignment :
8
8
Enabled : false
9
- Layout/AlignHash :
9
+ Layout/HashAlignment :
10
10
EnforcedHashRocketStyle : table
11
- Layout/AlignParameters :
11
+ Layout/ParameterAlignment :
12
12
Enabled : false
13
13
Layout/EmptyLinesAroundAccessModifier :
14
14
Enabled : false
@@ -22,11 +22,11 @@ Layout/FirstParameterIndentation:
22
22
EnforcedStyle : consistent
23
23
Layout/IndentationWidth :
24
24
Severity : error
25
- Layout/IndentArray :
25
+ Layout/FirstArrayElementIndentation :
26
26
EnforcedStyle : consistent
27
- Layout/IndentHash :
27
+ Layout/FirstHashElementIndentation :
28
28
EnforcedStyle : consistent
29
- Layout/IndentHeredoc :
29
+ Layout/HeredocIndentation :
30
30
Enabled : false
31
31
Exclude :
32
32
- spec/**/*
@@ -46,7 +46,7 @@ Lint/DuplicateMethods:
46
46
- lib/mercenary/command.rb
47
47
Layout/EndAlignment :
48
48
Severity : error
49
- Lint/HandleExceptions :
49
+ Lint/SuppressedException :
50
50
Exclude :
51
51
- lib/mercenary/option.rb
52
52
Style/RescueStandardError :
@@ -168,5 +168,5 @@ Style/TrailingCommaInArrayLiteral:
168
168
EnforcedStyleForMultiline : consistent_comma
169
169
Style/TrailingCommaInHashLiteral :
170
170
EnforcedStyleForMultiline : consistent_comma
171
- Style/UnneededCapitalW :
171
+ Style/RedundantCapitalW :
172
172
Enabled : false
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
spec . test_files = spec . files . grep ( %r!^(test|spec|features)/! )
20
20
spec . require_paths = [ "lib" ]
21
21
22
- spec . required_ruby_version = ">= 2.3 .0"
22
+ spec . required_ruby_version = ">= 2.4 .0"
23
23
24
24
spec . add_development_dependency "bundler"
25
25
spec . add_development_dependency "rake"
You can’t perform that action at this time.
0 commit comments