forked from paper-trail-gem/paper_trail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_todo.yml
47 lines (34 loc) · 867 Bytes
/
.rubocop_todo.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
require: rubocop-rspec
# Remove these configuration records
# one by one as the offenses are removed from the code base.
Metrics/AbcSize:
Max: 22 # Goal: 15
Metrics/CyclomaticComplexity:
Max: 8 # Goal: 6
Metrics/PerceivedComplexity:
Max: 9 # Goal: 7
Style/FrozenStringLiteralComment:
Enabled: false
RSpec/BeforeAfterAll:
Enabled: false
RSpec/ExpectInHook:
Exclude:
- spec/paper_trail/associations_spec.rb
- spec/models/version_spec.rb
RSpec/FilePath:
Enabled: false
RSpec/InstanceVariable:
Exclude:
- spec/paper_trail/associations_spec.rb
- spec/paper_trail/model_spec.rb
RSpec/MessageSpies:
Exclude:
- spec/models/version_spec.rb
RSpec/NamedSubject:
Enabled: false
RSpec/NestedGroups:
Exclude:
- spec/paper_trail/associations_spec.rb
- spec/paper_trail/model_spec.rb
Security/YAMLLoad:
Enabled: false