Skip to content

Commit

Permalink
add rubocop stub configs
Browse files Browse the repository at this point in the history
  • Loading branch information
displague committed Jul 4, 2015
1 parent ace2229 commit 53448e5
Show file tree
Hide file tree
Showing 2 changed files with 165 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
164 changes: 164 additions & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2014-12-02 23:23:38 -0500 using RuboCop version 0.27.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: 1
# Configuration parameters: AlignWith, SupportedStyles.
Lint/EndAlignment:
Enabled: false

# Offense count: 12
Lint/ParenthesesAsGroupedExpression:
Enabled: false

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

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

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

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

# Offense count: 18
Metrics/AbcSize:
Max: 200

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

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

# Offense count: 66
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Max: 138

# Offense count: 26
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 120

# Offense count: 4
Metrics/PerceivedComplexity:
Max: 33

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

# Offense count: 2
# Configuration parameters: Keywords.
Style/CommentAnnotation:
Enabled: false

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

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

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

# Offense count: 16
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/FormatString:
Enabled: false

# Offense count: 1
# Configuration parameters: MinBodyLength.
Style/GuardClause:
Enabled: false

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

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

# Offense count: 42
# Cop supports --auto-correct.
Style/IndentationConsistency:
Enabled: false

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

# Offense count: 2
Style/Lambda:
Enabled: false

# Offense count: 2
# Cop supports --auto-correct.
Style/LeadingCommentSpace:
Enabled: false

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

# Offense count: 1
# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
Style/Next:
Enabled: false

# Offense count: 2
# Configuration parameters: MaxSlashes.
Style/RegexpLiteral:
Enabled: false

# Offense count: 2
Style/SelfAssignment:
Enabled: false

# Offense count: 5
# Cop supports --auto-correct.
Style/SpaceInsideParens:
Enabled: false

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

# Offense count: 10
# Cop supports --auto-correct.
Style/Tab:
Enabled: false

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: WordRegex.
Style/WordArray:
MinSize: 5

0 comments on commit 53448e5

Please sign in to comment.