Skip to content

Commit 4096273

Browse files
authored
Merge pull request #147 from dblock/rubocop-0.74.0
Upgraded RuboCop to 0.74.0.
2 parents 25edf39 + f3ac5a6 commit 4096273

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.rubocop_todo.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2018-01-05 16:54:58 -0500 using RuboCop version 0.50.0.
3+
# on 2019-08-25 11:12:51 -0400 using RuboCop version 0.74.0.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -11,14 +11,8 @@
1111
Metrics/ClassLength:
1212
Max: 103
1313

14-
# Offense count: 94
15-
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
16-
# URISchemes: http, https
17-
Metrics/LineLength:
18-
Max: 142
19-
2014
# Offense count: 3
21-
# Configuration parameters: CountComments.
15+
# Configuration parameters: CountComments, ExcludedMethods.
2216
Metrics/MethodLength:
2317
Max: 25
2418

@@ -28,7 +22,8 @@ Metrics/ModuleLength:
2822
Max: 265
2923

3024
# Offense count: 2
31-
# Configuration parameters: EnforcedStyle, SupportedStyles.
25+
# Cop supports --auto-correct.
26+
# Configuration parameters: AutoCorrect, EnforcedStyle.
3227
# SupportedStyles: nested, compact
3328
Style/ClassAndModuleChildren:
3429
Exclude:
@@ -55,3 +50,10 @@ Style/DoubleNegation:
5550
Style/MethodMissingSuper:
5651
Exclude:
5752
- 'lib/hyperclient/collection.rb'
53+
54+
# Offense count: 93
55+
# Cop supports --auto-correct.
56+
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
57+
# URISchemes: http, https
58+
Metrics/LineLength:
59+
Max: 142

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ end
1616

1717
group :development, :test do
1818
gem 'rake'
19-
gem 'rubocop', '~> 0.73.0', require: false
19+
gem 'rubocop', '~> 0.74.0', require: false
2020
gem 'simplecov', require: false
2121
end
2222

0 commit comments

Comments
 (0)