forked from hitobito/hitobito
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
43 lines (37 loc) · 779 Bytes
/
Copy path.rubocop.yml
File metadata and controls
43 lines (37 loc) · 779 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
inherit_mode:
merge:
- Exclude
require:
- standard
- standard-custom
- standard-performance
- rubocop-performance
- rubocop-rails
- ./lib/rubocop/cops/wagons/patched_method.rb
inherit_gem:
standard: config/base.yml
standard-performance: config/base.yml
standard-custom: config/base.yml
standard-rails: config/base.yml
inherit_from:
- .rubocop/rspec.yml
- .rubocop/strict.yml
- .rubocop/puzzle.yml
- .rubocop_todo.yml
AllCops:
NewCops: disable
SuggestExtensions: false
TargetRubyVersion: 3.2
Exclude:
- Rakefile
- db/**/*
- config/**/*
- bin/**/*
- vendor/**/*
- tmp/**/*
- app/assets/config.rb
- node_modules/**/*
Lint/UselessAssignment:
AutoCorrect: false
Rails/ToSWithArgument:
Enabled: false