Skip to content

Commit

Permalink
Generated a Rubocop config
Browse files Browse the repository at this point in the history
rubocop --auto-gen-config
  • Loading branch information
mvidner committed Jan 8, 2015
1 parent f533399 commit 0ad78c3
Showing 1 changed file with 208 additions and 0 deletions.
208 changes: 208 additions & 0 deletions .rubocop.yml
@@ -0,0 +1,208 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2014-11-26 13:17:00 +0100 using RuboCop version 0.26.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
Lint/LiteralInCondition:
Enabled: false

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

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

# Offense count: 1
# Cop supports --auto-correct.
Lint/UnusedMethodArgument:
Enabled: false

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

# Offense count: 4
Metrics/BlockNesting:
Max: 4

# Offense count: 5
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 521

# Offense count: 13
Metrics/CyclomaticComplexity:
Max: 30

# Offense count: 56
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Max: 135

# Offense count: 46
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 222

# Offense count: 13
Metrics/PerceivedComplexity:
Max: 34

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

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

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

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

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

# Offense count: 9
# Cop supports --auto-correct.
Style/EmptyLines:
Enabled: false

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

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

# Offense count: 91
# Cop supports --auto-correct.
# Configuration parameters: SupportedStyles.
Style/HashSyntax:
EnforcedStyle: hash_rockets

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

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

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

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

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

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

# Offense count: 27
# Cop supports --auto-correct.
Style/LineEndConcatenation:
Enabled: false

# Offense count: 61
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/MethodName:
Enabled: false

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

# Offense count: 4
Style/MultilineTernaryOperator:
Enabled: false

# Offense count: 12
# Cop supports --auto-correct.
Style/NegatedIf:
Enabled: false

# Offense count: 11
# Cop supports --auto-correct.
Style/NilComparison:
Enabled: false

# Offense count: 11
# Cop supports --auto-correct.
# Configuration parameters: IncludeSemanticChanges.
Style/NonNilCheck:
Enabled: false

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

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

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

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

# Offense count: 4
# Cop supports --auto-correct.
Style/TrailingWhitespace:
Enabled: false

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, Whitelist.
Style/TrivialAccessors:
Enabled: false

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

# Offense count: 16
# Cop supports --auto-correct.
Style/WordArray:
MinSize: 29

0 comments on commit 0ad78c3

Please sign in to comment.