1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/.rubocop.yml

63 lines
1.2 KiB
YAML
Raw Normal View History

2016-02-28 18:12:01 -05:00
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.0
2016-02-28 18:12:01 -05:00
Lint/AmbiguousBlockAssociation:
Enabled:
false
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*"
- "lib/**/*.rake"
Style/BarePercentLiterals:
EnforcedStyle: percent_q
2016-02-28 18:12:01 -05:00
Style/ClassAndModuleChildren:
Enabled: false
Style/DoubleNegation:
Enabled: false
2017-03-26 18:50:35 -04:00
Style/FileName:
Exclude:
- "Dangerfile"
Style/IndentHeredoc:
Enabled: false
2016-02-28 18:12:01 -05:00
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
2016-02-28 19:12:19 -05:00
Style/AccessorMethodName:
Enabled: false