cookstyle 1.0.0 → 1.0.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/config/cookstyle.yml +1 -5
- data/lib/cookstyle/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: 9fbc3dc48df2dca52d7772c1c9aeb07f4f28ae84
|
|
4
|
+
data.tar.gz: e235c633e6752e50ca0cb4a9f6ba7a551ffa9117
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8df26084a0b3a68daee8108683ba1f2136549ecd3bc1d9b289aa4d6b2a3caa063f1b69baf5c080e82c2240fb78087033821bd07e7f11662357b331f0fcd59e8a
|
|
7
|
+
data.tar.gz: 596e6b755f81afdd30aefe2bd38045ecc91ec02ea354b1ddc7a89eea4307fbd6af8dca84015c70c014b4594919ff0dca8ceb9b32a494ebcf2db54dc469250ac8
|
data/config/cookstyle.yml
CHANGED
|
@@ -70,7 +70,7 @@ Lint/PercentSymbolArray:
|
|
|
70
70
|
|
|
71
71
|
# if you rescue Exception, then rescue say StandardError you're gonna have a bad time
|
|
72
72
|
Lint/ShadowedException:
|
|
73
|
-
Enabled:
|
|
73
|
+
Enabled: true
|
|
74
74
|
|
|
75
75
|
# We're on modern ruby so let's assume Integer everywhere
|
|
76
76
|
Lint/UnifiedInteger:
|
|
@@ -96,10 +96,6 @@ Style/NumericPredicate:
|
|
|
96
96
|
Style/SpaceInsideArrayPercentLiteral:
|
|
97
97
|
Enabled: true
|
|
98
98
|
|
|
99
|
-
# ( true ) ? 'bob' : 'bill' is unnecessary
|
|
100
|
-
Style/TernaryParentheses:
|
|
101
|
-
Enabled: true
|
|
102
|
-
|
|
103
99
|
# disable this until there's an autocorrect
|
|
104
100
|
Bundler/OrderedGems:
|
|
105
101
|
Enabled: false
|
data/lib/cookstyle/version.rb
CHANGED