forked from toy/image_optim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
59 lines (41 loc) · 926 Bytes
/
.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
AllCops:
Exclude:
- '*.gemspec'
Lint/EndAlignment:
AlignWith: variable
Metrics/ClassLength:
Max: 150
Metrics/CyclomaticComplexity:
Max: 10
Metrics/MethodLength:
Max: 25
Metrics/PerceivedComplexity:
Max: 8
Style/AccessModifierIndentation:
EnforcedStyle: outdent
Style/CaseIndentation:
IndentWhenRelativeTo: end
Style/DotPosition:
EnforcedStyle: trailing
Style/DoubleNegation:
Enabled: false
Style/Encoding:
EnforcedStyle: when_needed
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/IfUnlessModifier:
MaxLineLength: 40
Style/IndentHash:
EnforcedStyle: consistent
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%w': '[]'
'%W': '[]'
Style/Semicolon:
AllowAsExpressionSeparator: true
Style/SpaceBeforeBlockBraces:
EnforcedStyle: no_space
Style/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Style/TrailingComma:
EnforcedStyleForMultiline: comma