foreman-docker / .rubocop.yml @ c69bcf98
1 |
# TODO: remove this file by either moving cops here or fixing code
|
---|---|
2 |
inherit_from:
|
3 |
- .rubocop_todo.yml
|
4 |
|
5 |
AllCops:
|
6 |
TargetRubyVersion: 2.0 |
7 |
|
8 |
Rails: # always run the rails cops |
9 |
Enabled: true |
10 |
|
11 |
# Don't is_a? over kind_of?
|
12 |
Style/ClassCheck:
|
13 |
Enabled: false |
14 |
|
15 |
# Don't enforce documentation
|
16 |
Style/Documentation:
|
17 |
Enabled: false |
18 |
|
19 |
# Support both ruby19 and hash_rockets
|
20 |
Style/HashSyntax:
|
21 |
Enabled: false |
22 |
|
23 |
Style/StringLiterals:
|
24 |
Enabled: false |
25 |
|
26 |
Style/FrozenStringLiteralComment:
|
27 |
Enabled: false |
28 |
|
29 |
Metrics/ClassLength:
|
30 |
Exclude:
|
31 |
- 'test/**/*'
|
32 |
|
33 |
Performance/FixedSize:
|
34 |
Exclude:
|
35 |
- 'test/**/*'
|
36 |
|
37 |
Rails/Date:
|
38 |
Exclude:
|
39 |
- foreman_docker.gemspec
|