forked from Shopify/ruby-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
49 lines (41 loc) · 798 Bytes
/
.rubocop.yml
File metadata and controls
49 lines (41 loc) · 798 Bytes
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
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-sorbet
- rubocop-minitest
- rubocop-rake
- ./lib/rubocop/cop/ruby_lsp/use_language_server_aliases
AllCops:
NewCops: disable
SuggestExtensions: false
TargetRubyVersion: 2.7
Exclude:
- "vendor/**/*"
- "features/**/*"
- "test/fixtures/**/*"
- "test/expectations/**/*"
Naming/FileName:
Exclude:
- "lib/ruby-lsp.rb"
RubyLsp/UseLanguageServerAliases:
Exclude:
- "test/**/*.rb"
Sorbet/FalseSigil:
Enabled: false
Sorbet/TrueSigil:
Enabled: true
Include:
- "test/**/*.rb"
Exclude:
- "**/*.rake"
- "lib/**/*.rb"
Sorbet/StrictSigil:
Enabled: true
Include:
- "lib/**/*.rb"
Exclude:
- "**/*.rake"
- "test/**/*.rb"
- "lib/ruby-lsp.rb"
Style/StderrPuts:
Enabled: true