Skip to content

Commit

Permalink
Pin RuboCop to current version, regen todo config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljb committed Jul 9, 2015
1 parent 157d77e commit 4895835
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 5 deletions.
51 changes: 47 additions & 4 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2014-12-31 12:33:22 -0700 using RuboCop version 0.28.0.
# on 2015-07-09 10:56:49 -0600 using RuboCop version 0.32.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 10
# Offense count: 1
Lint/NonLocalExitFromIterator:
Enabled: false

# Offense count: 11
Metrics/AbcSize:
Max: 106
Max: 105

# Offense count: 1
# Configuration parameters: CountComments.
Expand All @@ -23,15 +27,54 @@ Metrics/CyclomaticComplexity:
Metrics/LineLength:
Max: 177

# Offense count: 11
# Offense count: 12
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 54

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 157

# Offense count: 3
Metrics/PerceivedComplexity:
Max: 16

# Offense count: 24
Style/Documentation:
Enabled: false

# Offense count: 1
# Cop supports --auto-correct.
Style/EmptyLiteral:
Enabled: false

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/FirstParameterIndentation:
Enabled: false

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, UseHashRocketsWithSymbolValues.
Style/HashSyntax:
Enabled: false

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
Style/RegexpLiteral:
Enabled: false

# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: MultiSpaceAllowedForOperators.
Style/SpaceAroundOperators:
Enabled: false

# Offense count: 4
# Cop supports --auto-correct.
Style/SymbolLiteral:
Enabled: false
2 changes: 1 addition & 1 deletion vSphere.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rspec-core'
s.add_development_dependency 'rspec-expectations'
s.add_development_dependency 'rspec-mocks'
s.add_development_dependency 'rubocop', '~> 0.28'
s.add_development_dependency 'rubocop', '~> 0.32.1'

s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
Expand Down

0 comments on commit 4895835

Please sign in to comment.