generated from P-manBrown/docker-rails-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
49 lines (37 loc) · 874 Bytes
/
.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
require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
- rubocop-erb
- rubocop-factory_bot
AllCops:
NewCops: enable
Exclude:
- "bin/{bundle,rails,rake}"
- "db/migrate/*"
- "db/schema.rb"
- "vendor/**/*"
Layout/EmptyLinesAroundAccessModifier:
EnforcedStyle: only_before
Layout/EndAlignment:
EnforcedStyleAlignWith: variable
Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
Layout/IndentationConsistency:
EnforcedStyle: indented_internal_methods
Metrics/BlockLength:
Exclude:
- "Guardfile"
- "config/**/*"
Style/AsciiComments:
Enabled: false
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/RedundantReturn:
AllowMultipleReturnValues: true
Style/Semicolon:
AllowAsExpressionSeparator: true
Style/StringLiterals:
EnforcedStyle: double_quotes