-
Notifications
You must be signed in to change notification settings - Fork 9
/
.rubocop_todo.yml
57 lines (49 loc) · 1.75 KB
/
.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
48
49
50
51
52
53
54
55
56
57
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 99999`
# on 2023-05-19 18:17:27 UTC using RuboCop version 1.51.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 10
# Configuration parameters: EnforcedStyle, AllowedGems, Include.
# SupportedStyles: Gemfile, gems.rb, gemspec
# Include: **/*.gemspec, **/Gemfile, **/gems.rb
Gemspec/DevelopmentDependencies:
Exclude:
- 'journaled.gemspec'
# Offense count: 2
RSpec/ExpectInHook:
Exclude:
- 'spec/models/concerns/journaled/changes_spec.rb'
# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
RSpec/Rails/TravelAround:
Exclude:
- 'spec/lib/journaled/audit_log_spec.rb'
# Offense count: 2
RSpec/SubjectStub:
Exclude:
- 'spec/models/concerns/journaled/actor_spec.rb'
# Offense count: 12
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
RSpec/VerifiedDoubles:
Exclude:
- 'spec/models/concerns/journaled/actor_spec.rb'
- 'spec/models/journaled/actor_uri_provider_spec.rb'
- 'spec/models/journaled/change_writer_spec.rb'
# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Rails/IndexWith:
Exclude:
- 'app/models/journaled/event.rb'
# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
Style/CollectionCompact:
Exclude:
- 'app/jobs/journaled/delivery_job.rb'
# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Style/RedundantConstantBase:
Exclude:
- 'spec/dummy/config.ru'