-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop.yml
59 lines (48 loc) · 1.01 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
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-rails
- rubocop-performance
- rubocop-rspec
- rubocop-rspec_rails
- rubocop-factory_bot
- rubocop-obsession
AllCops:
NewCops: enable
TargetRubyVersion: 3.3
ParserEngine: parser_prism
SuggestExtensions: false
Exclude:
- 'bin/**/*'
- 'coverage/**/*'
- 'db/schema.rb'
- 'lib/tasks/auto_annotate_models.rake'
- 'log/**/*'
- 'public/**/*'
- 'scripts/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
FactoryBot/ExcessiveCreateList:
Enabled: false
Obsession/Graphql/MutationName:
Enabled: false
RSpec/ExampleLength:
Enabled: false
RSpec/MultipleExpectations:
Enabled: false
Style/BlockDelimiters:
EnforcedStyle: braces_for_chaining
Style/MethodCallWithArgsParentheses:
AllowedMethods:
- head
- raise
- render
Exclude:
- 'db/migrate/*'
- 'spec/**/*'
Style/StringLiterals:
EnforcedStyle: single_quotes
Style/SymbolArray:
EnforcedStyle: percent
Style/WordArray:
EnforcedStyle: percent