forked from Shopify/packwerk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
55 lines (44 loc) · 910 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
50
51
52
53
54
55
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-performance
- rubocop-sorbet
AllCops:
NewCops: disable
TargetRubyVersion: 2.7
UseCache: true
CacheRootDirectory: tmp
SuggestExtensions: false
Exclude:
- "test/fixtures/**/*"
- "bin/*"
Lint/UnusedMethodArgument:
AllowUnusedKeywordArguments: true
Style/MethodCallWithArgsParentheses:
Enabled: true
IgnoreMacros: true
IgnoredMethods:
- require
- require_relative
- require_dependency
- yield
- raise
Exclude:
- Gemfile
Style/StringLiterals:
EnforcedStyle: double_quotes
Sorbet/ConstantsFromStrings:
Enabled: true
Sorbet/ForbidIncludeConstLiteral:
Enabled: true
Sorbet/ParametersOrderingInSignature:
Enabled: true
Sorbet/KeywordArgumentOrdering:
Enabled: true
Sorbet/ValidSigil:
Enabled: true
Exclude:
- "test/**/*"
Sorbet/FalseSigil:
Exclude:
- "test/**/*"