rf-stylez 0.4.0 → 0.4.1
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/lib/rf/stylez/version.rb +1 -1
- data/ruby/rubocop.yml +6 -6
- data/ruby/rubocop_lint.yml +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f7c63405aa58802e9d89b4e22c86236bd0bc98998286f345077168c97b77449
|
|
4
|
+
data.tar.gz: 484542fe3a274b4e1f9af9ae11a456fea0542fd9f9033ac8d2f2538449f1af1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ed7b8530c2119d0a630a089541d41a52ad4dea78cdc3eda0a04f47b724cd73e9358d96d533fd8f47f94f8a985ed7eb040e09eab9b62fc5f8d4b0b64ce23bb7e
|
|
7
|
+
data.tar.gz: c5e051a13e2ff4e0354ee3b5479883f3d17158fce85d6a4b1f74d2117e50bd3f99e1ccd82d7a69c68d45fe6324b208638b421e24b1e477a1235d3515591889a6
|
data/lib/rf/stylez/version.rb
CHANGED
data/ruby/rubocop.yml
CHANGED
|
@@ -42,7 +42,7 @@ Layout/DefEndAlignment:
|
|
|
42
42
|
Enabled: true
|
|
43
43
|
Layout/ConditionPosition:
|
|
44
44
|
Enabled: true
|
|
45
|
-
Layout/
|
|
45
|
+
Layout/TrailingEmptyLines:
|
|
46
46
|
Enabled: true
|
|
47
47
|
Layout/TrailingWhitespace:
|
|
48
48
|
Enabled: true
|
|
@@ -52,11 +52,11 @@ Layout/IndentationWidth:
|
|
|
52
52
|
Enabled: true
|
|
53
53
|
Layout/AccessModifierIndentation:
|
|
54
54
|
Enabled: true
|
|
55
|
-
Layout/
|
|
55
|
+
Layout/ArrayAlignment:
|
|
56
56
|
Enabled: true
|
|
57
|
-
Layout/
|
|
57
|
+
Layout/HashAlignment:
|
|
58
58
|
Enabled: true
|
|
59
|
-
Layout/
|
|
59
|
+
Layout/ParameterAlignment:
|
|
60
60
|
Enabled: true
|
|
61
61
|
Layout/CaseIndentation:
|
|
62
62
|
Enabled: true
|
|
@@ -76,7 +76,7 @@ Layout/InitialIndentation:
|
|
|
76
76
|
Enabled: true
|
|
77
77
|
Layout/IndentationConsistency:
|
|
78
78
|
Enabled: true
|
|
79
|
-
Layout/
|
|
79
|
+
Layout/FirstHashElementIndentation:
|
|
80
80
|
Enabled: true
|
|
81
81
|
Layout/LeadingCommentSpace:
|
|
82
82
|
Enabled: true
|
|
@@ -157,7 +157,7 @@ Style/SymbolProc:
|
|
|
157
157
|
Style/RegexpLiteral:
|
|
158
158
|
Enabled: true
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
Layout/LineLength:
|
|
161
161
|
Enabled: true
|
|
162
162
|
Max: 120
|
|
163
163
|
AllowHeredoc: true
|
data/ruby/rubocop_lint.yml
CHANGED
|
@@ -32,7 +32,7 @@ Lint/DuplicateMethods:
|
|
|
32
32
|
Description: 'Check for duplicate method definitions.'
|
|
33
33
|
Enabled: true
|
|
34
34
|
|
|
35
|
-
Lint/
|
|
35
|
+
Lint/DuplicateHashKey:
|
|
36
36
|
Description: 'Check for duplicate keys in hash literals.'
|
|
37
37
|
Enabled: true
|
|
38
38
|
|
|
@@ -75,7 +75,7 @@ Lint/FormatParameterMismatch:
|
|
|
75
75
|
Description: 'The number of parameters to format/sprint must match the fields.'
|
|
76
76
|
Enabled: true
|
|
77
77
|
|
|
78
|
-
Lint/
|
|
78
|
+
Lint/SuppressedException:
|
|
79
79
|
Description: "Don't suppress exception."
|
|
80
80
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions'
|
|
81
81
|
Enabled: true
|
|
@@ -148,7 +148,7 @@ Lint/ShadowingOuterLocalVariable:
|
|
|
148
148
|
for block arguments or block local variables.
|
|
149
149
|
Enabled: true
|
|
150
150
|
|
|
151
|
-
Lint/
|
|
151
|
+
Lint/RedundantStringCoercion:
|
|
152
152
|
Description: 'Checks for Object#to_s usage in string interpolation.'
|
|
153
153
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-to-s'
|
|
154
154
|
Enabled: true
|
|
@@ -157,7 +157,7 @@ Lint/UnderscorePrefixedVariableName:
|
|
|
157
157
|
Description: 'Do not use prefix `_` for a variable that is used.'
|
|
158
158
|
Enabled: true
|
|
159
159
|
|
|
160
|
-
Lint/
|
|
160
|
+
Lint/RedundantCopDisableDirective:
|
|
161
161
|
Description: >-
|
|
162
162
|
Checks for rubocop:disable comments that can be removed.
|
|
163
163
|
Note: this cop is not disabled when disabling all cops.
|