-
-
Notifications
You must be signed in to change notification settings - Fork 194
/
.rubocop_todo.yml
122 lines (104 loc) · 3.34 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
119
120
121
122
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-12-16 17:45:21 -0700 using RuboCop version 0.81.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
# Cop supports --auto-correct.
Lint/OrderedMagicComments:
Exclude:
- 'lib/dynamoid/persistence.rb'
# Offense count: 3
# Configuration parameters: AllowComments.
Lint/SuppressedException:
Exclude:
- 'lib/dynamoid/dirty.rb'
- 'lib/dynamoid/persistence/update_fields.rb'
- 'lib/dynamoid/persistence/upsert.rb'
# Offense count: 1
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
Exclude:
- 'lib/dynamoid/dirty.rb'
# Offense count: 13
RSpec/AnyInstance:
Exclude:
- 'spec/dynamoid/adapter_plugin/aws_sdk_v3_spec.rb'
- 'spec/dynamoid/adapter_spec.rb'
- 'spec/dynamoid/criteria/chain_spec.rb'
- 'spec/dynamoid/persistence_spec.rb'
# Offense count: 125
# Configuration parameters: Prefixes.
# Prefixes: when, with, without
RSpec/ContextWording:
Enabled: false
# Offense count: 2
RSpec/DescribeClass:
Exclude:
- 'spec/dynamoid/before_type_cast_spec.rb'
- 'spec/dynamoid/type_casting_spec.rb'
# Offense count: 4
# Configuration parameters: CustomIncludeMethods.
RSpec/EmptyExampleGroup:
Exclude:
- 'spec/dynamoid/persistence_spec.rb'
- 'spec/dynamoid/type_casting_spec.rb'
# Offense count: 8
RSpec/LeakyConstantDeclaration:
Exclude:
- 'spec/dynamoid/criteria/chain_spec.rb'
- 'spec/dynamoid/indexes_spec.rb'
- 'spec/dynamoid/sti_spec.rb'
# Offense count: 1
RSpec/LetSetup:
Exclude:
- 'spec/dynamoid/sti_spec.rb'
# Offense count: 2
RSpec/RepeatedDescription:
Exclude:
- 'spec/dynamoid/associations/belongs_to_spec.rb'
# Offense count: 2
RSpec/RepeatedExample:
Exclude:
- 'spec/dynamoid/associations/has_one_spec.rb'
# Offense count: 6
RSpec/RepeatedExampleGroupDescription:
Exclude:
- 'spec/dynamoid/adapter_plugin/aws_sdk_v3_spec.rb'
- 'spec/dynamoid/finders_spec.rb'
# Offense count: 9
RSpec/SubjectStub:
Exclude:
- 'spec/dynamoid/adapter_spec.rb'
# Offense count: 2
Style/CommentedKeyword:
Exclude:
- 'lib/dynamoid/dirty.rb'
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, Autocorrect.
# SupportedStyles: module_function, extend_self, forbidden
Style/ModuleFunction:
Exclude:
- 'lib/dynamoid.rb'
- 'lib/dynamoid/config.rb'
# Offense count: 3
Style/OptionalArguments:
Exclude:
- 'lib/dynamoid/persistence.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AllowAsExpressionSeparator.
Style/Semicolon:
Exclude:
- 'spec/dynamoid/adapter_plugin/aws_sdk_v3_spec.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, IgnoreClassMethods, AllowedMethods.
# AllowedMethods: to_ary, to_a, to_c, to_enum, to_h, to_hash, to_i, to_int, to_io, to_open, to_path, to_proc, to_r, to_regexp, to_str, to_s, to_sym
Style/TrivialAccessors:
Exclude:
- 'lib/dynamoid/adapter_plugin/aws_sdk_v3.rb'