-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.rubocop.yml
41 lines (39 loc) · 917 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
require:
- rubocop-capybara
- rubocop-factory_bot
- rubocop-performance
- rubocop-rails
- rubocop-rspec
- rubocop-rspec_rails
inherit_from:
- .rubocop/capybara.yml
- .rubocop/factorybot.yml
- .rubocop/gemspec.yml
- .rubocop/layout.yml
- .rubocop/lint.yml
- .rubocop/metrics.yml
- .rubocop/naming.yml
- .rubocop/rails.yml
- .rubocop/rspec.yml
- .rubocop/rspec_rails.yml
- .rubocop/style.yml
- .rubocop_todo.yml
AllCops:
TargetRubyVersion: "3.3"
TargetRailsVersion: "7.2"
UseCache: True
NewCops: enable
Exclude:
- ".cache/**/*"
- "bin/*"
- "config/initializers/integration*"
- "db/schema.rb"
- "integration/gems/**/*"
- "node_modules/**/*"
- "services/*/bin/**"
- "services/*/config/initializers/integration*"
- "services/*/db/schema.rb"
- "services/*/gems/**/*"
- "services/*/vendor/**/*"
- "tmp/**/*"
- "vendor/**/*"