-
Notifications
You must be signed in to change notification settings - Fork 21
/
.rubocop.yml
77 lines (56 loc) · 1.17 KB
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
AllCops:
DisplayCopNames: true
TargetRubyVersion: 2.3
Exclude:
- 'spec/dummy/**/*'
- 'lib/generators/**/*'
- 'vendor/bundle/**/*'
- 'tmp/**/*'
- 'gemfiles/vendor/bundle/**/*'
Rails:
Enabled: true
# == Metrics == #
Metrics/LineLength:
Max: 150
Metrics/MethodLength:
Max: 10
Metrics/ClassLength:
Max: 100
Metrics/ModuleLength:
Max: 100
Metrics/ParameterLists:
Max: 5
# == Layout == #
Layout/AlignHash:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table
Layout/EmptyLineAfterGuardClause:
Enabled: true
Layout/ExtraSpacing:
ForceEqualSignAlignment: true
Layout/Tab:
IndentationWidth: 2
# == Style == #
Style/SymbolArray:
Enabled: true
Style/HashSyntax:
EnforcedStyle: ruby19_no_mixed_keys
Style/CollectionMethods:
Enabled: true
Style/NumericLiterals:
MinDigits: 4
Style/StringLiterals:
EnforcedStyle: single_quotes
# == Disabled Cops == #
Rails/SkipsModelValidations:
Enabled: false
Rails/ApplicationRecord:
Enabled: false
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Gemspec/RequiredRubyVersion:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false