update .rubocop_rubyzip for latest version of rubocop
This commit is contained in:
parent
53fba8ae65
commit
47aa16f64b
|
@ -1,5 +1,5 @@
|
||||||
# This configuration was generated by `rubocop --auto-gen-config`
|
# This configuration was generated by `rubocop --auto-gen-config`
|
||||||
# on 2015-03-22 19:19:42 +0300 using RuboCop version 0.29.1.
|
# on 2015-06-08 10:22:52 +0300 using RuboCop version 0.32.0.
|
||||||
# The point is for the user to remove these configuration records
|
# The point is for the user to remove these configuration records
|
||||||
# one by one as the offenses are removed from the code base.
|
# one by one as the offenses are removed from the code base.
|
||||||
# Note that changes in the inspected code, or installation of new
|
# Note that changes in the inspected code, or installation of new
|
||||||
|
@ -23,23 +23,23 @@ Lint/UselessComparison:
|
||||||
|
|
||||||
# Offense count: 115
|
# Offense count: 115
|
||||||
Metrics/AbcSize:
|
Metrics/AbcSize:
|
||||||
Max: 64
|
Max: 62
|
||||||
|
|
||||||
# Offense count: 12
|
# Offense count: 12
|
||||||
# Configuration parameters: CountComments.
|
# Configuration parameters: CountComments.
|
||||||
Metrics/ClassLength:
|
Metrics/ClassLength:
|
||||||
Max: 569
|
Max: 562
|
||||||
|
|
||||||
# Offense count: 21
|
# Offense count: 21
|
||||||
Metrics/CyclomaticComplexity:
|
Metrics/CyclomaticComplexity:
|
||||||
Max: 14
|
Max: 14
|
||||||
|
|
||||||
# Offense count: 240
|
# Offense count: 237
|
||||||
# Configuration parameters: AllowURI, URISchemes.
|
# Configuration parameters: AllowURI, URISchemes.
|
||||||
Metrics/LineLength:
|
Metrics/LineLength:
|
||||||
Max: 237
|
Max: 236
|
||||||
|
|
||||||
# Offense count: 110
|
# Offense count: 108
|
||||||
# Configuration parameters: CountComments.
|
# Configuration parameters: CountComments.
|
||||||
Metrics/MethodLength:
|
Metrics/MethodLength:
|
||||||
Max: 35
|
Max: 35
|
||||||
|
@ -64,7 +64,8 @@ Style/Alias:
|
||||||
|
|
||||||
# Offense count: 1
|
# Offense count: 1
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
Style/Blocks:
|
# Configuration parameters: EnforcedStyle, SupportedStyles, ProceduralMethods, FunctionalMethods, IgnoredMethods.
|
||||||
|
Style/BlockDelimiters:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 7
|
# Offense count: 7
|
||||||
|
@ -78,10 +79,16 @@ Style/ClassAndModuleChildren:
|
||||||
Style/ClassCheck:
|
Style/ClassCheck:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 89
|
# Offense count: 77
|
||||||
Style/Documentation:
|
Style/Documentation:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
|
# Offense count: 1
|
||||||
|
# Cop supports --auto-correct.
|
||||||
|
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
||||||
|
Style/EmptyLinesAroundClassBody:
|
||||||
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 1
|
# Offense count: 1
|
||||||
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
||||||
Style/FormatString:
|
Style/FormatString:
|
||||||
|
@ -112,11 +119,12 @@ Style/NonNilCheck:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 3
|
# Offense count: 3
|
||||||
# Configuration parameters: MaxSlashes.
|
# Cop supports --auto-correct.
|
||||||
|
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
|
||||||
Style/RegexpLiteral:
|
Style/RegexpLiteral:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 9
|
# Offense count: 2
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
# Configuration parameters: AllowAsExpressionSeparator.
|
# Configuration parameters: AllowAsExpressionSeparator.
|
||||||
Style/Semicolon:
|
Style/Semicolon:
|
||||||
|
@ -128,6 +136,17 @@ Style/Semicolon:
|
||||||
Style/SignalException:
|
Style/SignalException:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
|
# Offense count: 1
|
||||||
|
# Cop supports --auto-correct.
|
||||||
|
Style/SingleSpaceBeforeFirstArg:
|
||||||
|
Enabled: false
|
||||||
|
|
||||||
|
# Offense count: 9
|
||||||
|
# Cop supports --auto-correct.
|
||||||
|
# Configuration parameters: MultiSpaceAllowedForOperators.
|
||||||
|
Style/SpaceAroundOperators:
|
||||||
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 30
|
# Offense count: 30
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
Style/SpecialGlobalVars:
|
Style/SpecialGlobalVars:
|
||||||
|
@ -141,11 +160,11 @@ Style/SymbolProc:
|
||||||
|
|
||||||
# Offense count: 2
|
# Offense count: 2
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, Whitelist.
|
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
||||||
Style/TrivialAccessors:
|
Style/TrailingBlankLines:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# Offense count: 155
|
# Offense count: 151
|
||||||
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
||||||
Style/VariableName:
|
Style/VariableName:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
Loading…
Reference in New Issue