-
Notifications
You must be signed in to change notification settings - Fork 125
/
.rubocop.yml
54 lines (41 loc) · 918 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
# This file strictly follows the rules defined in the Ruby style guide:
# http://shopify.github.io/ruby-style-guide/
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-sorbet
- rubocop-rspec # useful even though we use minitest/spec
AllCops:
NewCops: disable
SuggestExtensions: false
Exclude:
- "vendor/**/*"
Include:
- "sorbet/rbi/shims/**/*.rbi"
Naming/InclusiveLanguage:
Exclude:
- "lib/tapioca/dsl/compilers/protobuf.rb"
RSpec/BeforeAfterAll:
Enabled: false
RSpec/ExampleLength:
Enabled: false
RSpec/LeadingSubject:
Enabled: false
RSpec/NoExpectationExample:
Enabled: false
Sorbet:
Enabled: true
Sorbet/ConstantsFromStrings:
Enabled: false
Sorbet/FalseSigil:
Enabled: false
Sorbet/TrueSigil:
Enabled: true
Include:
- "**/*.rb"
- "**/*.rake"
Style/CaseEquality:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- "spec/tapioca/**/*"