-
Notifications
You must be signed in to change notification settings - Fork 472
/
.rubocop.yml
63 lines (59 loc) · 1.15 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
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-sorbet
AllCops:
NewCops: enable
Exclude:
- "sorbet/**/*"
- "bin/**/*"
- "lib/shopify_api/rest/resources/**/*"
- "test/rest/**/*"
Sorbet:
Enabled: true
Sorbet/HasSigil:
Enabled: true
Exclude:
- Gemfile*
Sorbet/StrictSigil:
Enabled: true
Exclude:
- Gemfile*
- "lib/shopify_api/auth/session.rb"
- Rakefile
- "test/**/*"
Sorbet/TrueSigil:
Enabled: true
Exclude:
- Gemfile*
- Rakefile
- "test/**/*"
Sorbet/ValidSigil:
Enabled: true
Sorbet/EnforceSigilOrder:
Enabled: true
Sorbet/AllowIncompatibleOverride:
Enabled: true
Sorbet/CheckedTrueInSignature:
Enabled: true
Sorbet/KeywordArgumentOrdering:
Enabled: true
Sorbet/SignatureBuildOrder:
Enabled: true
Sorbet/BindingConstantWithoutTypeAlias:
Enabled: true
Sorbet/ConstantsFromStrings:
Enabled: true
Sorbet/ForbidIncludeConstLiteral:
Enabled: true
Sorbet/ForbidSuperclassConstLiteral:
Enabled: true
Layout/EmptyLineAfterGuardClause:
Enabled: true
Style/GlobalStdStream:
Enabled: true
Style/OpenStructUse:
Enabled: false
Layout/LineLength:
Exclude:
- "test/clients/*"