forked from zinc-collective/tobias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop_todo.yml
97 lines (84 loc) · 2.73 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
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 2000`
# on 2023-09-14 00:31:11 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: 1
# Configuration parameters: AllowedMethods.
# AllowedMethods: enums
Lint/ConstantDefinitionInBlock:
Exclude:
- 'spec/models/blueprint_spec.rb'
# Offense count: 1
RSpec/AnyInstance:
Exclude:
- 'spec/furniture/marketplace/checkouts_controller_request_spec.rb'
# Offense count: 7
# Configuration parameters: Prefixes, AllowedPatterns.
# Prefixes: when, with, without
RSpec/ContextWording:
Exclude:
- 'spec/models/authenticated_session_spec.rb'
- 'spec/support/shared_examples/a_space_member_only_route.rb'
# Offense count: 1
# Configuration parameters: IgnoredMetadata.
RSpec/DescribeClass:
Exclude:
- 'spec/tasks/release_after_build_spec.rb'
# Offense count: 2
# Configuration parameters: Max, CountAsOne.
RSpec/ExampleLength:
Exclude:
- 'spec/requests/rsvps_controller_request_spec.rb'
# Offense count: 1
RSpec/LeakyConstantDeclaration:
Exclude:
- 'spec/models/blueprint_spec.rb'
# Offense count: 1
RSpec/LetSetup:
Exclude:
- 'spec/policies/membership_policy_spec.rb'
# Offense count: 3
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
RSpec/NamedSubject:
Exclude:
- 'spec/models/authentication_method_spec.rb'
- 'spec/models/invitation_spec.rb'
- 'spec/models/membership_spec.rb'
# Offense count: 1
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
# Include: **/*_spec.rb
RSpec/SpecFilePathFormat:
Exclude:
- 'spec/furniture/journal/entries_request_spec.rb'
# Offense count: 8
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: slashes, arguments
Rails/FilePath:
Exclude:
- 'config/application.rb'
- 'config/environments/development.rb'
- 'config/initializers/gretel.rb'
- 'spec/rails_helper.rb'
# Offense count: 1
# Configuration parameters: Include.
# Include: app/models/**/*.rb
Rails/HasManyOrHasOneDependent:
Exclude:
- 'app/models/invitation.rb'
# Offense count: 1
Rails/I18nLocaleTexts:
Exclude:
- 'app/mailers/authenticated_session_mailer.rb'
# Offense count: 5
# Configuration parameters: Include.
# Include: app/models/**/*.rb
Rails/UniqueValidationWithoutIndex:
Exclude:
- 'app/models/membership.rb'
- 'app/models/space.rb'
- 'app/models/utility.rb'