much-style-guide 0.4.0 → 0.5.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/lib/much-style-guide/rubocop.yml +16 -0
- data/lib/much-style-guide/version.rb +1 -1
- 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: c4b7017c2c766e8d684a0098766459f9530de50a7e91302ae03819c0e93485f2
|
|
4
|
+
data.tar.gz: 950adb43bb0c90ba9adcc2081cafade0900e9c891455c49a21bf2d37a5e6e7c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a45cb8a028ad528a6f63a455068cf02c15c487f4916f2e5df796b99e78d1b3a8069dfb94fcf2a8854b68865d79099f6e9414e320612c2f3860e78149b48e210
|
|
7
|
+
data.tar.gz: 573c4d3f19934facc10b4122dff743ff4c17b67876b1a18db564871cb09c7606029a1cc37679f5d4ec36746bc00889588124e2f4bf9055bcb8241836af4bb25e
|
|
@@ -7,12 +7,19 @@ require:
|
|
|
7
7
|
AllCops:
|
|
8
8
|
DisplayCopNames: true
|
|
9
9
|
DisplayStyleGuide: true
|
|
10
|
+
SuggestExtensions: false
|
|
11
|
+
Exclude:
|
|
12
|
+
- "**/clirb.rb"
|
|
13
|
+
- "tmp/**/*.rb"
|
|
10
14
|
|
|
11
15
|
##### LAYOUT #####
|
|
12
16
|
|
|
13
17
|
Layout/DotPosition:
|
|
14
18
|
EnforcedStyle: leading
|
|
15
19
|
|
|
20
|
+
Layout/EmptyLineAfterMagicComment:
|
|
21
|
+
Enabled: true
|
|
22
|
+
|
|
16
23
|
Layout/EmptyLineBetweenDefs:
|
|
17
24
|
AllowAdjacentOneLineDefs: true
|
|
18
25
|
|
|
@@ -134,6 +141,9 @@ Style/EachWithObject:
|
|
|
134
141
|
Style/EmptyMethod:
|
|
135
142
|
EnforcedStyle: expanded
|
|
136
143
|
|
|
144
|
+
Style/FormatString:
|
|
145
|
+
Enabled: false
|
|
146
|
+
|
|
137
147
|
# Needed to override Shopify setting.
|
|
138
148
|
Style/IfUnlessModifier:
|
|
139
149
|
Enabled: true
|
|
@@ -150,6 +160,12 @@ Style/ParallelAssignment:
|
|
|
150
160
|
Style/ParenthesesAroundCondition:
|
|
151
161
|
AllowInMultilineConditions: true
|
|
152
162
|
|
|
163
|
+
Style/Proc:
|
|
164
|
+
Enabled: false
|
|
165
|
+
|
|
166
|
+
Style/RaiseArgs:
|
|
167
|
+
Enabled: false
|
|
168
|
+
|
|
153
169
|
Style/RedundantBegin:
|
|
154
170
|
Enabled: false
|
|
155
171
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: much-style-guide
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kelly Redding
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-01-
|
|
12
|
+
date: 2021-01-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: assert
|