-
Notifications
You must be signed in to change notification settings - Fork 4
/
.rubocop.yml
288 lines (217 loc) · 5.22 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
AllCops:
# Exclude anything that isn't really part of our code.
# rails_helper is excluded because it's full of solecisms, but it's mostly
# generated code and copy-and-pasted snipets from READMEs.
Exclude:
- 'vendor/**/*'
- 'db/**/*'
- 'bin/**/*'
- '**/*.gemspec'
- '**/Rakefile'
- '**/Vagrantfile'
- 'app/views/api/**/*.json.jbuilder'
- 'config/initializers/simple_form.rb'
- 'config/unicorn.rb'
- 'spec/rails_helper.rb'
- 'lib/tasks/brakeman.rake'
- 'lib/tasks/elasticsearch.rake'
- 'spec/dummy/db/**/*'
- 'spec/spec_helper.rb'
Rails/UnknownEnv:
Environments:
- production
- development
- test
- local
Style/OptionalBooleanParameter:
Enabled: false
Lint/MissingSuper:
Enabled: false
Rake/MethodDefinitionInTask:
Enabled: false
RSpec/MultipleMemoizedHelpers:
Enabled: false
Style/FormatString:
Enabled: false
Rails/SaveBang:
Enabled: false
Style/DoubleNegation:
Enabled: false
# Use Weirich style
Style/BlockDelimiters:
EnforcedStyle: semantic
FunctionalMethods:
- before
- let
- let!
- subject
- watch
- expect
Style/SymbolArray:
Enabled: false
RSpec/StubbedMock:
Enabled: false
Style/SymbolProc:
Exclude:
- 'spec/factories/**/*'
# You can't use attr_reader to define a foo? method from @foo.
Style/TrivialAccessors:
AllowPredicates: true
# Don't worry about long methods in specs.
Metrics/MethodLength:
Max: 10
Exclude:
- 'spec/**/*'
- 'app/helpers/form_elements_helper.rb'
- 'app/metrics/**/*' # Some very long SQL based methods there.
# Enforce single quotes everywhere except in specs (because there's a lot of
# human text with apostrophes in spec names, and using double quotes for all
# of those is more consistent. There shouldn't be much human-readable text in
# the application code: that is better moved to the locale files.
Style/StringLiterals:
EnforcedStyle: single_quotes
Exclude:
- 'spec/**/*'
# Prefer sensible naming to comments everywhere.
Style/Documentation:
Description: Document classes and non-namespace modules.
Enabled: false
# Would enforce do_y if x over if x / do y / end. As with GuardClause above,
# this enforces code organisation that doesn't necesarily make things clearer.
Style/IfUnlessModifier:
Enabled: false
# Don't allow safe assignment in conditions.
Lint/AssignmentInCondition:
AllowSafeAssignment: false
# Just a preference to use %w[] over %w()
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%i': '[]'
'%w': '[]'
'%W': '[]'
'%': '{}'
# This encourages bad style IMHO
Rails/Delegate:
Enabled: false
RSpec/AnyInstance:
Enabled: false
Bundler/OrderedGems:
Enabled: false
Metrics/BlockLength:
Enabled: false
Performance/CompareWithBlock:
Enabled: false
Performance/RangeInclude:
Enabled: false
Performance/TimesMap:
Enabled: false
RSpec/DescribeClass:
Exclude:
- 'spec/requests/**/*'
RSpec/EmptyExampleGroup:
Enabled: false
RSpec/ExampleLength:
Max: 48
RSpec/HookArgument:
Enabled: false
RSpec/ExpectInHook:
Enabled: false
RSpec/ImplicitExpect:
Enabled: false
RSpec/LeadingSubject:
Enabled: false
RSpec/LetSetup:
Enabled: false
RSpec/MessageSpies:
Enabled: false
RSpec/MultipleExpectations:
Max: 27
RSpec/NamedSubject:
Enabled: false
RSpec/NestedGroups:
Enabled: false
RSpec/RepeatedExample:
Enabled: false
RSpec/ScatteredSetup:
Enabled: false
RSpec/SubjectStub:
Enabled: false
RSpec/VerifiedDoubles:
Enabled: false
Rails/FilePath:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: false
Rails/OutputSafety:
Enabled: false
Rails/ApplicationRecord:
Enabled: false
Rails/ApplicationJob:
Enabled: false
Security/YAMLLoad:
Enabled: false
Layout/ClosingParenthesisIndentation:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Style/EmptyCaseCondition:
Enabled: false
Layout/ExtraSpacing:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Layout/FirstArrayElementIndentation:
Enabled: false
Layout/MultilineArrayBraceLayout:
Enabled: false
Layout/MultilineHashBraceLayout:
Enabled: false
Layout/MultilineMethodCallBraceLayout:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Layout/MultilineOperationIndentation:
Enabled: false
Style/MutableConstant:
Enabled: false
Style/NestedParenthesizedCalls:
Enabled: false
Style/NumericLiteralPrefix:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/SignalException:
Enabled: false
Layout/SpaceBeforeBlockBraces:
Enabled: false
Layout/SpaceInsidePercentLiteralDelimiters:
Enabled: false
Style/TernaryParentheses:
Enabled: false
Lint/UselessAccessModifier:
Enabled: false
Lint/IneffectiveAccessModifier:
Enabled: false
Lint/AmbiguousBlockAssociation:
Enabled: false
RSpec/Capybara/FeatureMethods:
Enabled: false
# Below here are failing GovUk styles
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/WordArray:
Enabled: false
Style/MethodCalledOnDoEndBlock:
Enabled: false