-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path.rubocop.yml
152 lines (115 loc) · 3.05 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
AllCops:
TargetRubyVersion: 1.9
DisabledByDefault: true
# Prefer &&/|| over and/or.
Style/AndOr:
Enabled: true
# Do not use braces for hash literals when they are the last argument of a
# method call.
Style/BracesAroundHashParameters:
Enabled: true
# Align `when` with `case`.
Style/CaseIndentation:
Enabled: true
# align with the final end as case expression result might be assigned to a variable
EnforcedStyle: end
# Align comments with method definitions.
Style/CommentIndentation:
Enabled: true
# No extra empty lines.
Style/EmptyLines:
Enabled: true
# In a regular class definition, no empty lines around the body.
# Style/EmptyLinesAroundClassBody:
# Enabled: true
# In a regular module definition, no empty lines around the body.
# Style/EmptyLinesAroundModuleBody:
# Enabled: true
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
# Style/HashSyntax:
# Enabled: true
# Method definitions after `private` or `protected` isolated calls need one
# extra level of indentation.
Style/IndentationConsistency:
Enabled: true
# EnforcedStyle: rails
EnforcedStyle: normal
# Two spaces, no tabs (for indentation).
Style/IndentationWidth:
Enabled: true
Style/SpaceAfterColon:
Enabled: true
Style/SpaceAfterComma:
Enabled: true
Style/SpaceAroundEqualsInParameterDefault:
Enabled: true
Style/SpaceAroundKeyword:
Enabled: true
Style/SpaceAroundOperators:
Enabled: true
Style/SpaceBeforeFirstArg:
Enabled: true
# Defining a method with parameters needs parentheses.
Style/MethodDefParentheses:
Enabled: true
# Use `foo {}` not `foo{}`.
# Style/SpaceBeforeBlockBraces:
# Enabled: true
# Use `foo { bar }` not `foo {bar}`.
# Style/SpaceInsideBlockBraces:
# Enabled: true
# Use `{ a: 1 }` not `{a:1}`.
# Style/SpaceInsideHashLiteralBraces:
# Enabled: true
Style/SpaceInsideParens:
Enabled: true
# Check quotes usage according to lint rule below.
# Style/StringLiterals:
# Enabled: true
# EnforcedStyle: double_quotes
# Detect hard tabs, no hard tabs.
Style/Tab:
Enabled: true
# Blank lines should not have any spaces.
Style/TrailingBlankLines:
Enabled: true
# No trailing whitespace.
Style/TrailingWhitespace:
Enabled: true
# Use quotes for string literals when they are enough.
Style/UnneededPercentQ:
Enabled: true
# Align `end` with the matching keyword or starting expression except for
# assignments, where it should be aligned with the LHS.
Lint/EndAlignment:
Enabled: true
EnforcedStyleAlignWith: variable
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:
Enabled: true
#################### Metrics ###############################
Metrics/BlockLength:
Enabled: true
Max: 30
Metrics/BlockNesting:
Enabled: true
Max: 3
Metrics/ClassLength:
Enabled: true
Max: 300
# Avoid complex methods.
Metrics/CyclomaticComplexity:
Enabled: true
Max: 10
Metrics/LineLength:
Enabled: true
Max: 130
Metrics/MethodLength:
Enabled: true
Max: 30
Metrics/ModuleLength:
Enabled: true
Max: 300
Metrics/ParameterLists:
Enabled: true
Max: 5