@@ -16,14 +16,6 @@ AllCops:
16
16
- ' tmp/**/*'
17
17
- ' spec/smoke_tests/**/*.rb'
18
18
19
- # Enable when we require rubocop >= 1.71.1 or rubocop-ast >= 1.38.0
20
- InternalAffairs/NodePatternGroups :
21
- Enabled : false
22
-
23
- # Enable when we require rubocop >= 1.71.1 or rubocop-ast >= 1.38.0
24
- InternalAffairs/NodeTypeMultiplePredicates :
25
- Enabled : false
26
-
27
19
InternalAffairs/OnSendWithoutOnCSend :
28
20
Enabled : false
29
21
@@ -143,7 +135,7 @@ Style/NumberedParameters:
143
135
Style/RequireOrder :
144
136
Enabled : true
145
137
146
- # Enable RuboCop's pending cops up to v1.71
138
+ # Enable RuboCop's pending cops up to v1.72
147
139
148
140
Gemspec/AddRuntimeDependency : {Enabled: true}
149
141
Gemspec/DeprecatedAttributeAssignment : {Enabled: true}
@@ -159,6 +151,7 @@ Lint/AmbiguousRange: {Enabled: true}
159
151
Lint/ArrayLiteralInRegexp : {Enabled: true}
160
152
Lint/ConstantOverwrittenInRescue : {Enabled: true}
161
153
Lint/ConstantReassignment : {Enabled: true}
154
+ Lint/CopDirectiveSyntax : {Enabled: true}
162
155
Lint/DeprecatedConstants : {Enabled: true}
163
156
Lint/DuplicateBranch : {Enabled: true}
164
157
Lint/DuplicateMagicComment : {Enabled: true}
@@ -181,16 +174,19 @@ Lint/NumericOperationWithConstantResult: {Enabled: true}
181
174
Lint/OrAssignmentToConstant : {Enabled: true}
182
175
Lint/RedundantDirGlobSort : {Enabled: true}
183
176
Lint/RedundantRegexpQuantifiers : {Enabled: true}
177
+ Lint/RedundantTypeConversion : {Enabled: true}
184
178
Lint/RefinementImportMethods : {Enabled: true}
185
179
Lint/RequireRangeParentheses : {Enabled: true}
186
180
Lint/RequireRelativeSelfPath : {Enabled: true}
187
181
Lint/SharedMutableDefault : {Enabled: true}
182
+ Lint/SuppressedExceptionInNumberConversion : {Enabled: true}
188
183
Lint/SymbolConversion : {Enabled: true}
189
184
Lint/ToEnumArguments : {Enabled: true}
190
185
Lint/TripleQuotes : {Enabled: true}
191
186
Lint/UnescapedBracketInRegexp : {Enabled: true}
192
187
Lint/UnexpectedBlockArity : {Enabled: true}
193
188
Lint/UnmodifiedReduceAccumulator : {Enabled: true}
189
+ Lint/UselessConstantScoping : {Enabled: true}
194
190
Lint/UselessDefined : {Enabled: true}
195
191
Lint/UselessNumericOperation : {Enabled: true}
196
192
Lint/UselessRescue : {Enabled: true}
@@ -250,6 +246,7 @@ Style/RedundantCurrentDirectoryInPath: {Enabled: true}
250
246
Style/RedundantDoubleSplatHashBraces : {Enabled: true}
251
247
Style/RedundantEach : {Enabled: true}
252
248
Style/RedundantFilterChain : {Enabled: true}
249
+ Style/RedundantFormat : {Enabled: true}
253
250
Style/RedundantHeredocDelimiterQuotes : {Enabled: true}
254
251
Style/RedundantInitialize : {Enabled: true}
255
252
Style/RedundantInterpolationUnfreeze : {Enabled: true}
@@ -269,7 +266,7 @@ Style/SuperWithArgsParentheses: {Enabled: true}
269
266
Style/SwapValues : {Enabled: true}
270
267
Style/YAMLFileRead : {Enabled: true}
271
268
272
- # Enable RuboCop Performance's pending cops up to v1.23
269
+ # Enable RuboCop Performance's pending cops up to v1.24
273
270
274
271
Performance/AncestorsInclude : {Enabled: true}
275
272
Performance/BigDecimalWithNumericArgument : {Enabled: true}
@@ -291,3 +288,4 @@ Performance/StringBytesize: {Enabled: true}
291
288
Performance/StringIdentifierArgument : {Enabled: true}
292
289
Performance/StringInclude : {Enabled: true}
293
290
Performance/Sum : {Enabled: true}
291
+ Performance/ZipWithoutBlock : {Enabled: true}
0 commit comments