1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2024-11-23 05:47:53 +00:00
mpw/.rubocop.yml

39 lines
663 B
YAML
Raw Normal View History

2017-03-29 06:12:57 +00:00
AllCops:
Exclude:
- db/**/*
- config/**/*
- Vagrantfile
TargetRubyVersion: 2.3
2017-09-24 10:38:14 +00:00
Naming/AccessorMethodName:
2017-03-29 06:12:57 +00:00
Enabled: false
2017-09-24 10:38:14 +00:00
Lint/RescueWithoutErrorClass:
2017-03-29 06:12:57 +00:00
Enabled: false
2017-09-24 10:38:14 +00:00
2017-03-29 06:12:57 +00:00
Metrics/LineLength:
Max: 120
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
2017-09-24 10:38:14 +00:00
Metrics/MethodLength:
2017-03-29 06:12:57 +00:00
Enabled: false
2017-09-24 10:38:14 +00:00
Metrics/BlockLength:
2017-03-29 06:12:57 +00:00
Enabled: false
2017-09-24 10:38:14 +00:00
Metrics/ClassLength:
2017-03-29 06:12:57 +00:00
Enabled: false
2017-09-24 10:38:14 +00:00
Metrics/AbcSize:
2017-03-29 06:12:57 +00:00
Enabled: false
2017-09-24 10:38:14 +00:00
Style/NumericLiteralPrefix:
Enabled: false
Style/FrozenStringLiteralComment:
2017-03-29 06:12:57 +00:00
Enabled: false
Style/CommandLiteral:
Enabled: true
EnforcedStyle: percent_x
2017-09-24 10:38:14 +00:00
Style/Documentation:
Enabled: false