-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop_todo.yml
118 lines (105 loc) · 3.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 1000 --no-auto-gen-enforced-style`
# on 2023-12-04 12:18:35 UTC using RuboCop version 1.58.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: 7
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
Metrics/AbcSize:
Exclude:
- 'handlers/convert_file.rb'
- 'handlers/handler_base.rb'
- 'handlers/process_file.rb'
- 'handlers/uncompress_file.rb'
- 'handlers/unpack_attachments.rb'
# Offense count: 1
# Configuration parameters: CountComments, Max, CountAsOne.
Metrics/ClassLength:
Exclude:
- 'spec/support/events.rb'
# Offense count: 8
# Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Exclude:
- 'handlers/convert_file.rb'
- 'handlers/handler_base.rb'
- 'handlers/process_file.rb'
- 'handlers/uncompress_file.rb'
- 'handlers/unpack_attachments.rb'
- 'spec/support/events.rb'
# Offense count: 1
# Configuration parameters: Max, CountKeywordArgs, MaxOptionalParameters.
Metrics/ParameterLists:
Exclude:
- 'handler.rb'
# Offense count: 1
RSpec/ExpectInHook:
Exclude:
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 4
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
# Include: **/*_spec*rb*, **/spec/**/*
RSpec/FilePath:
Exclude:
- 'spec/handlers/convert_file_spec.rb'
- 'spec/handlers/process_file_spec.rb'
- 'spec/handlers/uncompress_file_spec.rb'
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 1
# Configuration parameters: EnforcedStyle.
# SupportedStyles: have_received, receive
RSpec/MessageSpies:
Exclude:
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 23
# Configuration parameters: Max.
RSpec/MultipleExpectations:
Exclude:
- 'spec/handlers/convert_file_spec.rb'
- 'spec/handlers/process_file_spec.rb'
- 'spec/handlers/uncompress_file_spec.rb'
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 37
# Configuration parameters: AllowSubject, Max.
RSpec/MultipleMemoizedHelpers:
Exclude:
- 'spec/handlers/convert_file_spec.rb'
- 'spec/handlers/process_file_spec.rb'
- 'spec/handlers/uncompress_file_spec.rb'
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 6
# Configuration parameters: Max, AllowedGroups.
RSpec/NestedGroups:
Exclude:
- 'spec/handlers/process_file_spec.rb'
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 4
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
# Include: **/*_spec.rb
RSpec/SpecFilePathFormat:
Exclude:
- '**/spec/routing/**/*'
- 'spec/handlers/convert_file_spec.rb'
- 'spec/handlers/process_file_spec.rb'
- 'spec/handlers/uncompress_file_spec.rb'
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 1
# Offense count: 3
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
RSpec/VerifiedDoubles:
Exclude:
- 'spec/handlers/unpack_attachments_spec.rb'
# Offense count: 6
# Configuration parameters: AllowedConstants.
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'handler.rb'
- 'handlers/convert_file.rb'
- 'handlers/handler_base.rb'
- 'handlers/process_file.rb'
- 'handlers/uncompress_file.rb'
- 'handlers/unpack_attachments.rb'