-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop_todo.yml
117 lines (104 loc) · 3.83 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
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude`
# on 2023-09-11 16:41:31 UTC using RuboCop version 1.56.3.
# 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: 5
# This cop supports safe autocorrection (--autocorrect).
Lint/RedundantCopDisableDirective:
Exclude:
- 'test/controllers/about_controller_test.rb'
- 'test/controllers/modsulator_controller_test.rb'
- 'test/controllers/normalizer_controller_test.rb'
- 'test/controllers/spreadsheet_controller_test.rb'
- 'test/test_helper.rb'
# Offense count: 1
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
Metrics/AbcSize:
Exclude:
- 'app/lib/modsulator.rb'
# Offense count: 2
# Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Exclude:
- 'app/lib/modsulator.rb'
# Offense count: 1
# Configuration parameters: .
# SupportedStyles: have_received, receive
RSpec/MessageSpies:
EnforcedStyle: receive
# Offense count: 7
# Configuration parameters: Max.
RSpec/MultipleExpectations:
Exclude:
- 'spec/controllers/about_controller_spec.rb'
- 'spec/controllers/modsulator_controller_spec.rb'
- 'spec/controllers/normalizer_controller_spec.rb'
- 'spec/controllers/spreadsheet_controller_spec.rb'
- 'spec/features/modsulator_sheet_unit_spec.rb'
- 'spec/lib/modsulator_spec.rb'
# Offense count: 5
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
RSpec/NamedSubject:
Exclude:
- 'spec/features/modsulator_sheet_unit_spec.rb'
- 'spec/lib/modsulator_spec.rb'
# Offense count: 2
RSpec/RepeatedExample:
Exclude:
- 'spec/features/validator_unit_spec.rb'
# Offense count: 2
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
# Include: **/*_spec.rb
RSpec/SpecFilePathFormat:
Exclude:
- 'spec/features/modsulator_process_template_spec.rb'
- 'spec/integration_tests/modsulator_integration_spec.rb'
# Offense count: 2
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: slashes, arguments
Rails/FilePath:
Exclude:
- 'spec/features/validator_unit_spec.rb'
- 'spec/integration_tests/modsulator_integration_spec.rb'
# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: Include.
# Include: **/Rakefile, **/*.rake
Rails/RakeEnvironment:
Exclude:
- 'Rakefile'
# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: strict, flexible
Rails/TimeZone:
Exclude:
- 'app/lib/modsulator.rb'
# Offense count: 5
# Configuration parameters: AllowedConstants.
Style/Documentation:
Exclude:
- 'app/controllers/about_controller.rb'
- 'app/controllers/modsulator_controller.rb'
- 'app/controllers/normalizer_controller.rb'
- 'app/controllers/spreadsheet_controller.rb'
- 'config/application.rb'
# Offense count: 21
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
# URISchemes: http, https
Layout/LineLength:
Exclude:
- 'app/lib/modsulator.rb'
- 'app/models/modsulator_sheet.rb'
- 'app/services/validator.rb'
- 'spec/controllers/modsulator_controller_spec.rb'
- 'spec/features/modsulator_process_template_spec.rb'
- 'spec/features/validator_unit_spec.rb'
- 'spec/integration_tests/modsulator_integration_spec.rb'
- 'spec/lib/modsulator_spec.rb'