Codebase list capistrano / 2d7d9ec7-c5c2-483b-a240-300f54c008ce/main .rubocop.yml
2d7d9ec7-c5c2-483b-a240-300f54c008ce/main

Tree @2d7d9ec7-c5c2-483b-a240-300f54c008ce/main (Download .tar.gz)

.rubocop.yml @2d7d9ec7-c5c2-483b-a240-300f54c008ce/mainraw · history · blame

AllCops:
  DisplayCopNames: true
  DisplayStyleGuide: true
  TargetRubyVersion: 2.0

Lint/AmbiguousBlockAssociation:
  Enabled:
    false
Metrics/BlockLength:
  Exclude:
    - "*.gemspec"
    - "spec/**/*"
    - "lib/**/*.rake"
Style/BarePercentLiterals:
  EnforcedStyle: percent_q
Style/ClassAndModuleChildren:
  Enabled: false
Style/DoubleNegation:
  Enabled: false
Style/FileName:
  Exclude:
    - "Dangerfile"
Style/IndentHeredoc:
  Enabled: false
Style/SpaceAroundEqualsInParameterDefault:
  EnforcedStyle: no_space
Style/StringLiterals:
  EnforcedStyle: double_quotes
Style/TrivialAccessors:
  AllowPredicates: true
Style/PercentLiteralDelimiters:
  Enabled: false
Style/SingleLineBlockParams:
  Enabled: false
Style/ModuleFunction:
  Enabled: false

# Enable someday
Style/Documentation:
  Enabled: false

# Needs refactors
Metrics/PerceivedComplexity:
  Enabled: false
Metrics/CyclomaticComplexity:
  Enabled: false
Metrics/MethodLength:
  Enabled: false
Style/PredicateName:
  Enabled: false
Metrics/LineLength:
  Enabled: false
Metrics/AbcSize:
  Enabled: false
Style/PerlBackrefs:
  Enabled: false
Metrics/ClassLength:
  Enabled: false
Metrics/ModuleLength:
  Enabled: false
Style/AccessorMethodName:
  Enabled: false