rubocop-standard 4.0.1 → 4.2.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/config/default.yml +24 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15a5376a4bc84ed179e01cd03ee074ffeecaabc9ddf0627b1561c0341f4a70fd
|
|
4
|
+
data.tar.gz: c712c331c23bc292c938f758dcb14f2473e19c61dd4e68999f0432f2f224723c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4688d38898541b8c03227835164af84d6fd4e458e5bd01b6282d442815d4fc24dfb16bc06b9fa5c16206744e3e27f3ff58f40a6777239b6ee13ef33210c29f78
|
|
7
|
+
data.tar.gz: 73d82fb70d257a312a4bb93ca7a1d2caa1ec1068867a8726e835dd4fb374591e835f424c2af9f258779c1b300603d47cce3a63d1ffc6e1190fe2bed086b1356a
|
data/config/default.yml
CHANGED
|
@@ -19,12 +19,18 @@ Layout/ConditionPosition:
|
|
|
19
19
|
Layout/DefEndAlignment:
|
|
20
20
|
Enabled: true
|
|
21
21
|
|
|
22
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
|
23
|
+
Enabled: true
|
|
24
|
+
|
|
22
25
|
Layout/EndAlignment:
|
|
23
26
|
Enabled: false
|
|
24
27
|
|
|
25
28
|
Layout/EndOfLine:
|
|
26
29
|
Enabled: true
|
|
27
30
|
|
|
31
|
+
Layout/IndentationStyle:
|
|
32
|
+
Enabled: true
|
|
33
|
+
|
|
28
34
|
Layout/InitialIndentation:
|
|
29
35
|
Enabled: true
|
|
30
36
|
|
|
@@ -52,6 +58,9 @@ Layout/SpaceAroundBlockParameters:
|
|
|
52
58
|
Layout/SpaceAroundEqualsInParameterDefault:
|
|
53
59
|
Enabled: true
|
|
54
60
|
|
|
61
|
+
Layout/SpaceAroundMethodCallOperator:
|
|
62
|
+
Enabled: true
|
|
63
|
+
|
|
55
64
|
Layout/SpaceBeforeBlockBraces:
|
|
56
65
|
Enabled: true
|
|
57
66
|
|
|
@@ -74,9 +83,6 @@ Layout/SpaceInsideRangeLiteral:
|
|
|
74
83
|
Layout/SpaceInsideReferenceBrackets:
|
|
75
84
|
Enabled: true
|
|
76
85
|
|
|
77
|
-
Layout/Tab:
|
|
78
|
-
Enabled: true
|
|
79
|
-
|
|
80
86
|
Layout/TrailingEmptyLines:
|
|
81
87
|
Enabled: true
|
|
82
88
|
|
|
@@ -92,6 +98,9 @@ Lint/Debugger:
|
|
|
92
98
|
Lint/DeprecatedClassMethods:
|
|
93
99
|
Enabled: true
|
|
94
100
|
|
|
101
|
+
Lint/DeprecatedOpenSSLConstant:
|
|
102
|
+
Enabled: true
|
|
103
|
+
|
|
95
104
|
Lint/DuplicateHashKey:
|
|
96
105
|
Enabled: true
|
|
97
106
|
|
|
@@ -110,9 +119,6 @@ Lint/EmptyEnsure:
|
|
|
110
119
|
Lint/EmptyInterpolation:
|
|
111
120
|
Enabled: true
|
|
112
121
|
|
|
113
|
-
Lint/EndInMethod:
|
|
114
|
-
Enabled: true
|
|
115
|
-
|
|
116
122
|
Lint/EnsureReturn:
|
|
117
123
|
Enabled: true
|
|
118
124
|
|
|
@@ -140,6 +146,9 @@ Lint/NextWithoutAccumulator:
|
|
|
140
146
|
Lint/RandOne:
|
|
141
147
|
Enabled: true
|
|
142
148
|
|
|
149
|
+
Lint/RaiseException:
|
|
150
|
+
Enabled: true
|
|
151
|
+
|
|
143
152
|
Lint/RedundantStringCoercion:
|
|
144
153
|
Enabled: true
|
|
145
154
|
|
|
@@ -149,6 +158,9 @@ Lint/RequireParentheses:
|
|
|
149
158
|
Lint/RescueException:
|
|
150
159
|
Enabled: true
|
|
151
160
|
|
|
161
|
+
Lint/StructNewOverride:
|
|
162
|
+
Enabled: true
|
|
163
|
+
|
|
152
164
|
Lint/UnderscorePrefixedVariableName:
|
|
153
165
|
Enabled: true
|
|
154
166
|
|
|
@@ -282,6 +294,9 @@ Style/Documentation:
|
|
|
282
294
|
Style/EndBlock:
|
|
283
295
|
Enabled: true
|
|
284
296
|
|
|
297
|
+
Style/ExponentialNotation:
|
|
298
|
+
Enabled: true
|
|
299
|
+
|
|
285
300
|
Style/For:
|
|
286
301
|
Enabled: true
|
|
287
302
|
|
|
@@ -328,6 +343,9 @@ Style/RedundantSortBy:
|
|
|
328
343
|
Style/Sample:
|
|
329
344
|
Enabled: true
|
|
330
345
|
|
|
346
|
+
Style/SlicingWithRange:
|
|
347
|
+
Enabled: true
|
|
348
|
+
|
|
331
349
|
Style/StabbyLambdaParentheses:
|
|
332
350
|
Enabled: true
|
|
333
351
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-standard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0
|
|
4
|
+
version: 4.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garen Torikian
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|