-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
77 lines (77 loc) · 1.44 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:
Include:
- "Gemfile"
Exclude:
- "db/**/*"
- "config/**/*"
- "script/**/*"
- "test/**/*"
- "vendor/**/*"
- "bin/**/*"
- "**/Rakefile"
- "**/config.ru"
DisplayCopNames: true
StyleGuideCopsOnly: false
TargetRubyVersion: 2.3
Rails:
Enabled: true
Rails/OutputSafety:
Enabled: false
Style/AndOr:
EnforcedStyle: always
Enabled: true
Style/FrozenStringLiteralComment:
Enabled: false
Style/CommentAnnotation:
Keywords:
- TODO
- FIXME
- OPTIMIZE
- HACK
- REVIEW
Style/DotPosition:
EnforcedStyle: trailing
Style/For:
EnforcedStyle: each
SupportedStyles:
- for
- each
Enabled: true
Style/IndentationWidth:
Width: 2
Style/NonNilCheck:
IncludeSemanticChanges: true
Style/StringLiterals:
EnforcedStyle: double_quotes
SupportedStyles:
- single_quotes
- double_quotes
Style/TrailingBlankLines:
EnforcedStyle: final_newline
SupportedStyles:
- final_newline
- final_blank_line
Metrics/LineLength:
Max: 110
AllowURI: true
URISchemes:
- http
- https
Metrics/MethodLength:
CountComments: false # count full line comments?
Max: 40
Metrics/AbcSize:
Max: 25
Style/Next:
Enabled: false
Lint/AssignmentInCondition:
Enabled: false
Style/Documentation:
Description: Document classes and non-namespace modules.
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Rails/TimeZone:
Enabled: false
Style/IfUnlessModifier:
Enabled: true