-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.rubocop_todo.yml
57 lines (51 loc) · 1.7 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`
# on 2018-04-04 08:55:33 -0500 using RuboCop version 0.54.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: 1
# Cop supports --auto-correct.
# Configuration parameters: Include, TreatCommentsAsGroupSeparators.
# Include: **/*.gemspec
Gemspec/OrderedDependencies:
Exclude:
- 'event_capture.gemspec'
# Offense count: 12
# Cop supports --auto-correct.
Layout/EmptyLineAfterMagicComment:
Exclude:
- 'Gemfile'
- 'Rakefile'
- 'app/controllers/event_capture/application_controller.rb'
- 'app/controllers/event_capture/events_controller.rb'
- 'app/models/event_capture/event.rb'
- 'event_capture.gemspec'
- 'lib/event_capture.rb'
- 'lib/event_capture/engine.rb'
- 'lib/event_capture/version.rb'
- 'spec/controllers/event_capture/events_controller_spec.rb'
- 'spec/spec_helper.rb'
- 'spec/support/controller_helpers.rb'
# Offense count: 1
# Cop supports --auto-correct.
Layout/EmptyLinesAroundExceptionHandlingKeywords:
Exclude:
- 'app/controllers/event_capture/events_controller.rb'
# Offense count: 2
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 39
# Offense count: 1
# Cop supports --auto-correct.
Rails/ApplicationRecord:
Exclude:
- 'app/models/event_capture/event.rb'
# Offense count: 3
# Cop supports --auto-correct.
Style/ExpandPathArguments:
Exclude:
- 'Rakefile'
- 'event_capture.gemspec'
- 'spec/spec_helper.rb'