1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/.rubocop.yml
Matt Brictson 13863cff54
Update gemspec with correct release notes URL, etc
- Switch homepage from http to https
- Switch from CHANGELOG.md to GitHub release notes
- Add other URLs: issues, home page, docs

This metadata is used by <https://rubygems.org> and other tools like
<https://www.ruby-toolbox.com>.
2019-09-12 07:57:41 -07:00

62 lines
1.2 KiB
YAML

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