-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
256 lines (195 loc) · 4.61 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
###############
# General #
###############
require: rubocop-rspec
AllCops:
CacheRootDirectory: /tmp
TargetRubyVersion: 2.4
Exclude:
- 'db/**/*'
- 'node_modules/**/*'
- 'bin/**/*'
- 'config/**/*'
- 'script/**/*'
DisplayCopNames: true
# Nobody is going to respect this,
# sorting is boring, no benefits at all
Bundler/OrderedGems:
Enabled: false
##############
# Layout #
##############
Layout/ExtraSpacing:
AllowForAlignment: false
Layout/IndentHash:
EnforcedStyle: 'consistent'
Layout/IndentArray:
EnforcedStyle: 'consistent'
Layout/SpaceInLambdaLiteral:
EnforcedStyle: 'require_space'
Layout/FirstParameterIndentation:
Enabled: false
Layout/MultilineMethodCallBraceLayout:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/MultilineBlockLayout:
Enabled: false
Layout/BlockEndNewline:
Enabled: false
Layout/ClosingParenthesisIndentation:
Enabled: false
###############
# Metrics #
###############
Metrics/LineLength:
Max: 100
Exclude:
- 'spec/**/*'
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/ParameterLists:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
#############
# Rails #
#############
Rails:
Enabled: true
Rails/HasAndBelongsToMany:
Enabled: false
# TODO: Check another possible implementation
Rails/DynamicFindBy:
Whitelist: 'find_by_any_id'
Rails/FilePath:
Enabled: false
#############
# RSpec #
#############
RSpec/AnyInstance:
Enabled: false
#############
# Style #
#############
# It's cool to use `render and return`
# but it isn't in conditionals.
Style/AndOr:
EnforcedStyle: 'conditionals'
# Don't chain with do..end blocks
Style/BlockDelimiters:
EnforcedStyle: 'braces_for_chaining'
Exclude:
- 'spec/factories/*'
IgnoredMethods:
- 'let'
- 'before'
# No one is going to die
Style/BracesAroundHashParameters:
Enabled: false
# I prefer this than hard to read blocks
Style/RedundantParentheses:
Enabled: false
# We will care about this in Ruby 3.0
Style/FrozenStringLiteralComment:
Enabled: false
# Is easier to type ' than "
Style/StringLiterals:
EnforcedStyle: 'single_quotes'
# If your code needs documentation is not simple enough.
# Add documentation where it adds value.
Style/Documentation:
Enabled: false
# Don't enforce hipster sugar.
Style/SymbolArray:
Enabled: false
Style/PercentLiteralDelimiters:
Enabled: false
# Not relevant
Style/ClassAndModuleChildren:
Enabled: false
# Scopes with -> and lambda for the hipster
Style/Lambda:
Enabled: false
# Why, tho?
Style/IfUnlessModifierOfIfUnless:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
# Cool but counterintuitive
Style/NumericPredicate:
Enabled: false
# Go, JavaScript, and git diffs will love it
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: 'comma'
# A little bit messy
Style/TrailingCommaInArguments:
Enabled: false
# Counterintuitive, Ruby is the only language doing this
Style/ConditionalAssignment:
Enabled: false
# Meh... I really don't care about this
Style/BlockComments:
Enabled: false
# I trust on the team that they use class vars with care:
# https://stackoverflow.com/questions/3802540/difference-between-class-variables-and-class-instance-variables#3803089
Style/ClassVars:
Enabled: false
# Prefer thinking in map/reduce functions
Style/EachWithObject:
Enabled: false
# wtf?
Style/NumericLiterals:
Enabled: false
# Meh, not relevant
Style/RegexpLiteral:
Enabled: false
# Nah, not by default
Style/WordArray:
Enabled: false
#############
# RSpec #
#############
# Prefer tests with Ruby code, instead of RSpec magic.
RSpec/DescribedClass:
Enabled: false
# Good ol' instance variables
# I prefer not to use them, tests are no longer self-contained,
# and brakes atomicity.
RSpec/InstanceVariable:
Enabled: false
# Controller tests are better with multiple expectations
RSpec/MultipleExpectations:
Enabled: false
# We have an attribute called "context", we are excluding factories
RSpec/EmptyExampleGroup:
Exclude:
- 'spec/factories/*'
RSpec/ExampleLength:
Enabled: false
RSpec/FilePath:
Enabled: false
RSpec/MessageSpies:
Enabled: false
RSpec/NestedGroups:
Enabled: false
############
# Lint #
############
Lint/ParenthesesAsGroupedExpression:
Enabled: false
# For tests, it's good to have useless assignments,
# it increase readability of what your `create(...)` means
Lint/UselessAssignment:
Exclude:
- 'spec/**/*'