colorls/.rubocop.yml
Claudio Bley 55423123a1 Drop support for Ruby 2.3
It reached EOL on March 31, 2019, and no longer receives patches.

See https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/
2019-07-01 23:34:18 +02:00

104 lines
1.7 KiB
YAML

require: rubocop-performance
AllCops:
Include:
- 'lib/**/*'
Exclude:
- 'vendor/**/*'
- 'benchmarks/*'
- 'profile/*'
- 'lib/yaml/*'
- 'lib/**/*.sh'
DisplayCopNames: true
TargetRubyVersion: 2.4
# Preferred codebase style ---------------------------------------------
Layout/ExtraSpacing:
AllowForAlignment: true
Style/FormatString:
EnforcedStyle: percent
Style/AndOr:
EnforcedStyle: conditionals
Layout/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
Layout/SpaceInsideBlockBraces:
EnforcedStyle: space
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Layout/AlignParameters:
EnforcedStyle: with_fixed_indentation
Style/EmptyElse:
EnforcedStyle: empty
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
Metrics/LineLength:
Max: 120
Metrics/ModuleLength:
Max: 200
Metrics/ClassLength:
Max: 350
Metrics/ParameterLists:
Max: 15
Naming/FileName:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/SingleLineBlockParams:
Enabled: false
Style/PerlBackrefs:
Enabled: false
Layout/SpaceAfterComma:
Enabled: false
Layout/SpaceAroundOperators:
Enabled: false
Style/EmptyCaseCondition:
Enabled: false
Style/MultilineBlockChain:
Enabled: false
Style/StderrPuts:
Enabled: false
# Current preferred metrics --------------------------------------------
# Better values are encouraged, but not required.
Metrics/AbcSize:
Max: 30
Metrics/MethodLength:
Max: 20
Metrics/CyclomaticComplexity:
Max: 8
Metrics/PerceivedComplexity:
Max: 8
# TODO -----------------------------------------------------------------
Style/Documentation:
Enabled: false