Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump RuboCop to 0.74.0 #1914

Merged
merged 3 commits into from
Aug 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ checks:
plugins:
rubocop:
enabled: true
channel: rubocop-0-71
channel: rubocop-0-74

ratings:
paths:
Expand Down
5 changes: 1 addition & 4 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Layout/IndentFirstArgument:
# extra level of indentation.
Layout/IndentationConsistency:
Enabled: true
EnforcedStyle: rails
EnforcedStyle: indented_internal_methods

# Two spaces, no tabs (for indentation).
Layout/IndentationWidth:
Expand All @@ -95,9 +95,6 @@ Layout/SpaceAroundEqualsInParameterDefault:
Layout/SpaceAroundKeyword:
Enabled: true

Layout/SpaceAroundOperators:
Enabled: true

Layout/SpaceBeforeComma:
Enabled: true

Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ group :development do
gem "rspec"
gem "rdoc"
gem "rake"
gem "rubocop", "~> 0.71.0", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop", "~> 0.74.0", require: false
gem "rubocop-performance", "~> 1.3.0", require: false
gem "rubocop-rails", "~> 2.0.0", require: false

gem "activerecord", github: "rails/rails", branch: "master"
gem "ruby-plsql", github: "rsim/ruby-plsql", branch: "master"
Expand Down