Skip to content

Commit

Permalink
Create .rubocop_todo.yml with --auto-gen-config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljb committed Dec 31, 2014
1 parent bdbeacc commit 32a4847
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
inherit_from: .rubocop_todo.yml
87 changes: 87 additions & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2014-12-31 10:12:27 -0700 using RuboCop version 0.28.0.
# 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: 2
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
Enabled: false

# Offense count: 1
Lint/LiteralInCondition:
Enabled: false

# Offense count: 5
Lint/RescueException:
Enabled: false

# Offense count: 6
Lint/ShadowingOuterLocalVariable:
Enabled: false

# Offense count: 7
Lint/UselessAssignment:
Enabled: false

# Offense count: 10
Metrics/AbcSize:
Max: 106

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 149

# Offense count: 4
Metrics/CyclomaticComplexity:
Max: 15

# Offense count: 99
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Max: 175

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

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

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

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

# Offense count: 1
Style/EmptyElse:
Enabled: false

# Offense count: 1
# Configuration parameters: Exclude.
Style/FileName:
Enabled: false

# Offense count: 4
# Configuration parameters: MaxLineLength.
Style/IfUnlessModifier:
Enabled: false

# Offense count: 2
Style/RegexpLiteral:
MaxSlashes: 0

# Offense count: 5
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/VariableName:
Enabled: false

0 comments on commit 32a4847

Please sign in to comment.