tracks/.rubocop.yml
Dan Rice 80ec0b6df0 Add RuboCop
* Exclude bin/ because it's generated code
* Max line length of 120 characters
* Documentation not required
* Prefer double-quoted strings
2016-08-27 10:09:14 -05:00

15 lines
181 B
YAML

Rails:
Enabled: true
AllCops:
Exclude:
- bin/*
Metrics/LineLength:
Max: 120
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes