ruboconf 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +10 -10
- data/cops/lint.yml +6 -0
- data/cops/style.yml +42 -0
- data/ruboconf.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7b076ca900f58adeff7a2b2ced90c1a98e864aabb9b0cc548ddb53d74ce64af
|
|
4
|
+
data.tar.gz: 139cb9cb60c6c71d2d60cf30e7c8c3f193443501038c0885c62a421faa18be6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faffd0df78c8c949cafdf24aaecf302e63e1f359d032ee92128d04c773f855117bd1adbe5c3037168d9ebcb75ce4898171b86c2ee5610f3f455a24b22f11e162
|
|
7
|
+
data.tar.gz: 623595dac6172d8fda5ab1aa5becaa9ea045701c48d98c2ab7e966a795375bcc53e27c69cb68a560cfe09cfbc66b4eee857d8a60214b6ded324d06b5a4c04a77
|
data/Gemfile.lock
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ruboconf (1.
|
|
5
|
-
rubocop (~> 1.
|
|
4
|
+
ruboconf (1.20.0)
|
|
5
|
+
rubocop (~> 1.86.0)
|
|
6
6
|
rubocop-performance (~> 1.26.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
11
|
ast (2.4.3)
|
|
12
|
-
json (2.
|
|
12
|
+
json (2.19.3)
|
|
13
13
|
language_server-protocol (3.17.0.5)
|
|
14
14
|
lint_roller (1.1.0)
|
|
15
|
-
parallel (1.
|
|
16
|
-
parser (3.3.
|
|
15
|
+
parallel (1.28.0)
|
|
16
|
+
parser (3.3.11.1)
|
|
17
17
|
ast (~> 2.4.1)
|
|
18
18
|
racc
|
|
19
|
-
prism (1.
|
|
19
|
+
prism (1.9.0)
|
|
20
20
|
racc (1.8.1)
|
|
21
21
|
rainbow (3.1.1)
|
|
22
22
|
rake (13.3.1)
|
|
23
|
-
regexp_parser (2.
|
|
24
|
-
rubocop (1.
|
|
23
|
+
regexp_parser (2.12.0)
|
|
24
|
+
rubocop (1.86.0)
|
|
25
25
|
json (~> 2.3)
|
|
26
26
|
language_server-protocol (~> 3.17.0.2)
|
|
27
27
|
lint_roller (~> 1.1.0)
|
|
@@ -29,10 +29,10 @@ GEM
|
|
|
29
29
|
parser (>= 3.3.0.2)
|
|
30
30
|
rainbow (>= 2.2.2, < 4.0)
|
|
31
31
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
32
|
-
rubocop-ast (>= 1.
|
|
32
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
33
33
|
ruby-progressbar (~> 1.7)
|
|
34
34
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
35
|
-
rubocop-ast (1.49.
|
|
35
|
+
rubocop-ast (1.49.1)
|
|
36
36
|
parser (>= 3.3.7.2)
|
|
37
37
|
prism (~> 1.7)
|
|
38
38
|
rubocop-performance (1.26.1)
|
data/cops/lint.yml
CHANGED
|
@@ -22,6 +22,9 @@ Lint/ConstantReassignment:
|
|
|
22
22
|
Lint/CopDirectiveSyntax:
|
|
23
23
|
Enabled: true
|
|
24
24
|
|
|
25
|
+
Lint/DataDefineOverride:
|
|
26
|
+
Enabled: true
|
|
27
|
+
|
|
25
28
|
Lint/DeprecatedConstants:
|
|
26
29
|
Enabled: true
|
|
27
30
|
|
|
@@ -124,6 +127,9 @@ Lint/UnexpectedBlockArity:
|
|
|
124
127
|
Lint/UnmodifiedReduceAccumulator:
|
|
125
128
|
Enabled: true
|
|
126
129
|
|
|
130
|
+
Lint/UnreachablePatternBranch:
|
|
131
|
+
Enabled: true
|
|
132
|
+
|
|
127
133
|
Lint/UnusedBlockArgument:
|
|
128
134
|
IgnoreEmptyBlocks: false
|
|
129
135
|
|
data/cops/style.yml
CHANGED
|
@@ -49,6 +49,9 @@ Style/Documentation:
|
|
|
49
49
|
Style/DocumentDynamicEvalDefinition:
|
|
50
50
|
Enabled: true
|
|
51
51
|
|
|
52
|
+
Style/EmptyClassDefinition:
|
|
53
|
+
Enabled: true
|
|
54
|
+
|
|
52
55
|
Style/EmptyHeredoc:
|
|
53
56
|
Enabled: true
|
|
54
57
|
|
|
@@ -76,6 +79,9 @@ Style/FileEmpty:
|
|
|
76
79
|
Style/FileNull:
|
|
77
80
|
Enabled: true
|
|
78
81
|
|
|
82
|
+
Style/FileOpen:
|
|
83
|
+
Enabled: true
|
|
84
|
+
|
|
79
85
|
Style/FileRead:
|
|
80
86
|
Enabled: true
|
|
81
87
|
|
|
@@ -143,6 +149,9 @@ Style/MapCompactWithConditionalBlock:
|
|
|
143
149
|
Style/MapIntoArray:
|
|
144
150
|
Enabled: true
|
|
145
151
|
|
|
152
|
+
Style/MapJoin:
|
|
153
|
+
Enabled: true
|
|
154
|
+
|
|
146
155
|
Style/MapToHash:
|
|
147
156
|
Enabled: true
|
|
148
157
|
|
|
@@ -164,6 +173,9 @@ Style/NegatedIf:
|
|
|
164
173
|
Style/NegatedIfElseCondition:
|
|
165
174
|
Enabled: false
|
|
166
175
|
|
|
176
|
+
Style/NegativeArrayIndex:
|
|
177
|
+
Enabled: true
|
|
178
|
+
|
|
167
179
|
Style/NestedFileDirname:
|
|
168
180
|
Enabled: true
|
|
169
181
|
|
|
@@ -185,12 +197,18 @@ Style/NumericLiterals:
|
|
|
185
197
|
Style/ObjectThen:
|
|
186
198
|
Enabled: true
|
|
187
199
|
|
|
200
|
+
Style/OneClassPerFile:
|
|
201
|
+
Enabled: true
|
|
202
|
+
|
|
188
203
|
Style/OpenStructUse:
|
|
189
204
|
Enabled: true
|
|
190
205
|
|
|
191
206
|
Style/OperatorMethodCall:
|
|
192
207
|
Enabled: true
|
|
193
208
|
|
|
209
|
+
Style/PartitionInsteadOfDoubleSelect:
|
|
210
|
+
Enabled: true
|
|
211
|
+
|
|
194
212
|
Style/PercentLiteralDelimiters:
|
|
195
213
|
PreferredDelimiters:
|
|
196
214
|
default: "()"
|
|
@@ -200,9 +218,15 @@ Style/PercentLiteralDelimiters:
|
|
|
200
218
|
"%w": "()"
|
|
201
219
|
"%W": "()"
|
|
202
220
|
|
|
221
|
+
Style/PredicateWithKind:
|
|
222
|
+
Enabled: false
|
|
223
|
+
|
|
203
224
|
Style/QuotedSymbols:
|
|
204
225
|
Enabled: true
|
|
205
226
|
|
|
227
|
+
Style/ReduceToHash:
|
|
228
|
+
Enabled: true
|
|
229
|
+
|
|
206
230
|
Style/RedundantArrayConstructor:
|
|
207
231
|
Enabled: true
|
|
208
232
|
|
|
@@ -248,6 +272,9 @@ Style/RedundantInterpolationUnfreeze:
|
|
|
248
272
|
Style/RedundantLineContinuation:
|
|
249
273
|
Enabled: true
|
|
250
274
|
|
|
275
|
+
Style/RedundantMinMaxBy:
|
|
276
|
+
Enabled: true
|
|
277
|
+
|
|
251
278
|
Style/RedundantRegexpArgument:
|
|
252
279
|
Enabled: true
|
|
253
280
|
|
|
@@ -263,12 +290,24 @@ Style/RedundantSelfAssignmentBranch:
|
|
|
263
290
|
Style/RedundantStringEscape:
|
|
264
291
|
Enabled: true
|
|
265
292
|
|
|
293
|
+
Style/RedundantStructKeywordInit:
|
|
294
|
+
Enabled: true
|
|
295
|
+
|
|
266
296
|
Style/ReturnNilInPredicateMethodDefinition:
|
|
267
297
|
Enabled: true
|
|
268
298
|
|
|
299
|
+
Style/ReverseFind:
|
|
300
|
+
Enabled: true
|
|
301
|
+
|
|
269
302
|
Style/SafeNavigationChainLength:
|
|
270
303
|
Enabled: false
|
|
271
304
|
|
|
305
|
+
Style/SelectByKind:
|
|
306
|
+
Enabled: false
|
|
307
|
+
|
|
308
|
+
Style/SelectByRange:
|
|
309
|
+
Enabled: true
|
|
310
|
+
|
|
272
311
|
Style/SelectByRegexp:
|
|
273
312
|
Enabled: true
|
|
274
313
|
|
|
@@ -297,6 +336,9 @@ Style/SwapValues:
|
|
|
297
336
|
Style/SymbolArray:
|
|
298
337
|
EnforcedStyle: brackets
|
|
299
338
|
|
|
339
|
+
Style/TallyMethod:
|
|
340
|
+
Enabled: true
|
|
341
|
+
|
|
300
342
|
Style/TrailingCommaInHashLiteral:
|
|
301
343
|
Enabled: true
|
|
302
344
|
|
data/ruboconf.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "ruboconf"
|
|
5
|
-
spec.version = "1.
|
|
5
|
+
spec.version = "1.20.0"
|
|
6
6
|
spec.authors = ["Richard Böhme"]
|
|
7
7
|
spec.email = ["richard.boehme1999@gmail.com"]
|
|
8
8
|
|
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
25
|
+
spec.add_dependency "rubocop", "~> 1.86.0"
|
|
26
26
|
spec.add_dependency "rubocop-performance", "~> 1.26.1"
|
|
27
27
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruboconf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Böhme
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 1.
|
|
18
|
+
version: 1.86.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 1.
|
|
25
|
+
version: 1.86.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: rubocop-performance
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|