-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
50 lines (39 loc) · 952 Bytes
/
.rubocop.yml
File metadata and controls
50 lines (39 loc) · 952 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
50
AllCops:
TargetRubyVersion: 3.2
NewCops: enable
SuggestExtensions: false
Exclude:
- "README.md"
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes
Layout/LineLength:
Max: 120
Metrics/BlockLength:
Exclude:
- "spec/**/*_spec.rb"
Metrics/MethodLength:
Exclude:
- "lib/rspec/json_api/compare_hash.rb"
- "lib/extensions/hash.rb"
Metrics/AbcSize:
Exclude:
- "lib/rspec/json_api/compare_hash.rb"
- "lib/rspec/json_api/matchers/match_json_schema.rb"
Metrics/CyclomaticComplexity:
Exclude:
- "lib/rspec/json_api/compare_hash.rb"
Metrics/PerceivedComplexity:
Exclude:
- "lib/rspec/json_api/compare_hash.rb"
Style/Documentation:
Enabled: false
Naming/PredicatePrefix:
Exclude:
- "lib/rspec/json_api/matchers.rb"
Naming/PredicateMethod:
Exclude:
- "lib/rspec/json_api/compare_hash.rb"