-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.rubocop.yml
More file actions
41 lines (35 loc) · 752 Bytes
/
.rubocop.yml
File metadata and controls
41 lines (35 loc) · 752 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
inherit_gem:
rubocop-lts: config/rubygem_rspec.yml
inherit_from:
- .rubocop_rspec.yml
plugins: rubocop-on-rbs
# This tells RuboCop to add the exclusions in this file
# to the default exclusions (and those from other inherited files),
# rather than overwriting them.
inherit_mode:
merge:
- Exclude
AllCops:
Exclude:
- certs/**/*
- checksums/**/*
- docs/**/*
- examples/**/*
- fixtures/**/*
- gemfiles/*.gemfile
- pkg/**/*
- results/**/*
- spec/fixtures/**/*
- tmp/**/*
- vendor/**/*
- AGENTS.md
RBS:
Enabled: true
Layout/IndentationConsistency:
Exclude: ['*.md']
RSpec/ExampleLength:
Enabled: false
RSpec/MultipleExpectations:
Enabled: false
RSpec/NestedGroups:
Enabled: false