Commit def218ec authored by Kyle Fuller's avatar Kyle Fuller

Update to Rubocop 0.27.1

parent d31b291e
......@@ -42,6 +42,9 @@ Encoding:
TrailingComma:
EnforcedStyleForMultiline: comma
Style/MultilineOperationIndentation:
EnforcedStyle: indented
# Clashes with CLAide Command#validate!
GuardClause:
Enabled: false
......@@ -50,6 +53,25 @@ GuardClause:
Next:
Enabled: false
# Arbitrary max lengths for classes simply do not work and enabling this will
# lead to a never ending stream of annoyance and changes.
Metrics/ClassLength:
Enabled: false
# No enforced convention here.
Metrics/BlockNesting:
Enabled: false
# It will be obvious which code is complex, Rubocop should only lint simple
# rules for us.
Metrics/AbcSize:
Enabled: false
# It will be obvious which code is complex, Rubocop should only lint simple
# rules for us.
Metrics/CyclomaticComplexity:
Enabled: false
#- CocoaPods support for Ruby 1.8.7 ------------------------------------------#
HashSyntax:
......
......@@ -34,7 +34,7 @@ group :development do
# Integration tests
gem 'diffy'
gem 'clintegracon'
gem 'rubocop', '~> 0.26.0'
gem 'rubocop'
end
group :debugging do
......
......@@ -144,9 +144,9 @@ GEM
ffi (>= 0.5.0)
rb-kqueue (0.2.3)
ffi (>= 0.5.0)
rubocop (0.26.1)
rubocop (0.27.1)
astrolabe (~> 1.3)
parser (>= 2.2.0.pre.4, < 3.0)
parser (>= 2.2.0.pre.7, < 3.0)
powerpack (~> 0.0.6)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.4)
......@@ -187,7 +187,7 @@ DEPENDENCIES
pry
rake
rb-fsevent
rubocop (~> 0.26.0)
rubocop
ruby-prof
webmock
xcodeproj!
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment