freistil-rubocop 0.1.0 → 0.1.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/default.yml +9 -2
- data/lib/freistil/rubocop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ee30c5b6a5eed89d21c0596bb4d71a17c748957
|
|
4
|
+
data.tar.gz: 6a3d735ab736e6e0cb839d1c6c7264ad8f4bb84b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3abfb9170d25665993e54a9c0216b54eec6d9d417ab723c8ebefb2d6398c6db667532cc71dbf7ebf11987b690a0351176a142d5c8a9e7726c50f19cc8b60148c
|
|
7
|
+
data.tar.gz: 09bd438c5cd84cdfe51a134f83c95b823ca477256fafa5c95b63353b368023808fbeb274ad2da66c8037b79823750d22940d88f0efa504df7698af693af294fe
|
data/default.yml
CHANGED
|
@@ -104,7 +104,7 @@ Metrics/ParameterLists:
|
|
|
104
104
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
|
|
105
105
|
Enabled: false
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
Naming/PredicateName:
|
|
108
108
|
Description: 'Check the names of predicate methods.'
|
|
109
109
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark'
|
|
110
110
|
NamePrefixBlacklist:
|
|
@@ -130,7 +130,14 @@ Style/TrailingCommaInArguments:
|
|
|
130
130
|
# for all parenthesized method calls with arguments.
|
|
131
131
|
EnforcedStyleForMultiline: comma
|
|
132
132
|
|
|
133
|
-
Style/
|
|
133
|
+
Style/TrailingCommaInArrayLiteral:
|
|
134
|
+
# If `comma`, the cop requires a comma after the last item in an array or
|
|
135
|
+
# hash, but only when each item is on its own line.
|
|
136
|
+
# If `consistent_comma`, the cop requires a comma after the last item of all
|
|
137
|
+
# non-empty array and hash literals.
|
|
138
|
+
EnforcedStyleForMultiline: comma
|
|
139
|
+
|
|
140
|
+
Style/TrailingCommaInHashLiteral:
|
|
134
141
|
# If `comma`, the cop requires a comma after the last item in an array or
|
|
135
142
|
# hash, but only when each item is on its own line.
|
|
136
143
|
# If `consistent_comma`, the cop requires a comma after the last item of all
|