Skip to content

Commit

Permalink
(maint) Update for rubocop 0.26.1
Browse files Browse the repository at this point in the history
Two changes for 0.26.1:
* some cops changed to the new 'Metrics' namespace, so accomodate that
* there are some new cops, all of which we'll ignore at least for now
  • Loading branch information
Kylo Ginsberg committed Oct 26, 2014
1 parent 858e274 commit 13f6d7c
Showing 1 changed file with 27 additions and 7 deletions.
34 changes: 27 additions & 7 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Style/RedundantSelf:
Enabled: false

# DISABLED - not useful
Style/MethodLength:
Metrics/MethodLength:
Enabled: false

# DISABLED - not useful
Expand Down Expand Up @@ -158,7 +158,7 @@ Style/AlignHash:
Style/AlignParameters:
Enabled: false

Style/BlockNesting:
Metrics/BlockNesting:
Enabled: false

Style/AsciiComments:
Expand Down Expand Up @@ -191,7 +191,7 @@ Style/ClassAndModuleChildren:
Style/ClassCheck:
Enabled: false

Style/ClassLength:
Metrics/ClassLength:
Enabled: false

Style/ClassMethods:
Expand Down Expand Up @@ -281,7 +281,7 @@ Style/ColonMethodCall:
Style/CommentAnnotation:
Enabled: false

Style/CyclomaticComplexity:
Metrics/CyclomaticComplexity:
Enabled: false

Style/ConstantName:
Expand Down Expand Up @@ -333,7 +333,7 @@ Style/EmptyLinesAroundBody:
Style/EmptyLiteral:
Enabled: false

Style/LineLength:
Metrics/LineLength:
Enabled: false

Style/MethodCallParentheses:
Expand Down Expand Up @@ -472,7 +472,6 @@ Style/RedundantException:
Style/SelfAssignment:
Enabled: false


Style/Proc:
Enabled: false

Expand All @@ -491,7 +490,7 @@ Style/RegexpLiteral:
Lint/UnderscorePrefixedVariableName:
Enabled: false

Style/ParameterLists:
Metrics/ParameterLists:
Enabled: false

Lint/RequireParentheses:
Expand All @@ -511,3 +510,24 @@ Style/IfWithSemicolon:

Style/Encoding:
Enabled: false

Metrics/PerceivedComplexity:
Enabled: false

Style/SymbolProc:
Enabled: false

Style/SpaceInsideRangeLiteral:
Enabled: false

Style/InfiniteLoop:
Enabled: false

Style/BarePercentLiterals:
Enabled: false

Style/PercentQLiterals:
Enabled: false

Style/MultilineBlockLayout:
Enabled: false

0 comments on commit 13f6d7c

Please sign in to comment.