-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.rubocop.yml
62 lines (48 loc) · 1.04 KB
/
.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
55
56
57
58
59
60
61
62
require:
- rubocop-performance
- rubocop-factory_bot
- rubocop-rake
- rubocop-rspec
AllCops:
NewCops: enable
TargetRubyVersion: 3.3
ActiveSupportExtensionsEnabled: true
DisplayCopNames: true
DisplayStyleGuide: true
Exclude:
- "bin/**/*"
- "db/migrate/**/*"
Bundler/OrderedGems:
Enabled: false
Layout/ExtraSpacing:
Enabled: true
Style/FrozenStringLiteralComment:
Enabled: false
Style/RaiseArgs:
Enabled: false
Style/OpenStructUse:
Enabled: false
Metrics/ClassLength:
Exclude:
- lib/swagger_docs.rb
- lib/swagger_helpers.rb
Metrics/MethodLength:
Max: 15
Exclude:
- lib/swagger_helpers.rb
Layout/LineLength:
Max: 100
Metrics/BlockLength:
Exclude:
- "spec/**/*"
AllowedMethods:
["resource", "namespace", "swagger_schema", "swagger_path", "included"]
# scope triggers a false positive, this will be fixed in rubocop 0.48.2
Lint/AmbiguousBlockAssociation:
Enabled: false
RSpec/ExampleLength:
Max: 10
RSpec/MultipleExpectations:
Max: 3
RSpec/NoExpectationExample:
Enabled: false