-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
.rubocop_todo.yml
86 lines (74 loc) · 2.37 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
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 2000`
# on 2024-03-07 02:44:05 UTC using RuboCop version 1.61.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
# 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: 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: 6
# 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'
# 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'
AllCops:
SuggestExtensions: false