-
Notifications
You must be signed in to change notification settings - Fork 4
/
.rubocop.yml
84 lines (84 loc) · 1.99 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
78
79
80
81
82
83
84
inherit_from: .rubocop_todo.yml
AllCops:
Include:
- "**/Rakefile"
- "**/config.ru"
Exclude:
- "db/**/*"
- "config/**/*"
- "script/**/*"
- "test/**/*"
- "chef-repo/**/*"
- "vendor/**/*"
- "bin/**/*"
RunRailsCops: true
DisplayCopNames: true
StyleGuideCopsOnly: false
Style/AndOr:
# Whether `and` and `or` are banned only in conditionals (conditionals)
# or completely (always).
EnforcedStyle: always
Enabled: true
Style/CommentAnnotation:
Keywords:
- TODO
- FIXME
- OPTIMIZE
- HACK
- REVIEW
Style/DotPosition:
EnforcedStyle: trailing
Enabled: true
Style/For:
EnforcedStyle: each
SupportedStyles:
- for
- each
Enabled: true
Style/IndentationWidth:
# Number of spaces for each indentation level.
Width: 2
Style/NonNilCheck:
# With `IncludeSemanticChanges` set to `true`, this cop reports offenses for
# `!x.nil?` and autocorrects that and `x != nil` to solely `x`, which is
# **usually** OK, but might change behavior.
#
# With `IncludeSemanticChanges` set to `false`, this cop does not report
# offenses for `!x.nil?` and does no changes that might change behavior.
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
# To make it possible to copy or click on URIs in the code, we allow lines
# contaning a URI to be longer than Max.
AllowURI: true
URISchemes:
- http
- https
Metrics/MethodLength:
CountComments: false # count full line comments?
Max: 40
Style/Next:
Enabled: false
Lint/AssignmentInCondition:
Enabled: false
Style/Documentation:
Description: Document classes and non-namespace modules.
Enabled: false
Style/ExtraSpacing:
Enabled: true
Style/ClassAndModuleChildren:
Enabled: false
Rails/TimeZone:
Enabled: false
Rails/Date:
Enabled: false