toxon
/
lita-tox
Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lita-tox/.rubocop.yml

46 lines
671 B
YAML
Raw Permalink Normal View History

2015-07-25 07:38:42 +00:00
AllCops:
2017-07-20 19:24:36 +00:00
TargetRubyVersion: 2.3
DisplayCopNames: true
2015-07-25 07:38:42 +00:00
Exclude:
- vendor/**/*
2017-07-20 19:24:36 +00:00
Layout/AccessModifierIndentation:
EnforcedStyle: outdent
Layout/MultilineOperationIndentation:
Exclude:
- ext/**/*
Metrics/BlockLength:
Exclude:
2017-07-20 19:33:29 +00:00
- '**/*.gemspec'
2017-07-20 19:24:36 +00:00
- spec/**/*
Metrics/LineLength:
Max: 120
Style/AndOr:
Exclude:
- ext/**/*
Style/DoubleNegation:
Enabled: false
2017-07-20 19:33:29 +00:00
Style/FileName:
Exclude:
- lib/lita-tox.rb
2017-07-20 19:24:36 +00:00
Style/GlobalVars:
Exclude:
- ext/**/*
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: comma
Style/VariableInterpolation:
Enabled: false