-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
56 lines (49 loc) · 2.32 KB
/
Copy path.rubocop_todo.yml
File metadata and controls
56 lines (49 loc) · 2.32 KB
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
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 100 --no-offense-counts --no-auto-gen-timestamp`
# using RuboCop version 1.82.1.
# 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.
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods, NotImplementedExceptions.
# NotImplementedExceptions: NotImplementedError
Lint/UnusedMethodArgument:
Exclude:
- 'lib/event_sourcery/event_store/subscription.rb'
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
Metrics/AbcSize:
Exclude:
- 'lib/event_sourcery/errors.rb'
- 'lib/event_sourcery/event_processing/esp_process.rb'
- 'lib/event_sourcery/memory/event_store.rb'
# Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
# AllowedMethods: refine
Metrics/BlockLength:
Exclude:
- 'lib/event_sourcery/rspec/event_store_shared_examples.rb'
# Configuration parameters: CountComments, Max, CountAsOne.
Metrics/ClassLength:
Exclude:
- 'lib/event_sourcery/event_processing/esp_runner.rb'
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
Metrics/CyclomaticComplexity:
Exclude:
- 'lib/event_sourcery/event_processing/esp_runner.rb'
# Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Exclude:
- 'lib/event_sourcery/config.rb'
- 'lib/event_sourcery/event.rb'
- 'lib/event_sourcery/event_processing/esp_process.rb'
- 'lib/event_sourcery/event_processing/esp_runner.rb'
- 'lib/event_sourcery/event_processing/event_stream_processor.rb'
- 'lib/event_sourcery/event_store/each_by_range.rb'
- 'lib/event_sourcery/memory/event_store.rb'
- 'spec/event_sourcery/aggregate_root_spec.rb'
# Configuration parameters: Max, CountKeywordArgs, MaxOptionalParameters.
Metrics/ParameterLists:
Exclude:
- 'lib/event_sourcery/event.rb'
- 'lib/event_sourcery/event_processing/esp_runner.rb'
- 'lib/event_sourcery/event_store/subscription.rb'