scss_lint 0.50.3 → 0.51.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 125c8c771a34f5997a2a5632b521c50cd5ffe301
|
|
4
|
+
data.tar.gz: 58f9ec25bf46faf67567b1f2f5e3a7075c1dfd58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c16f9acd86f9330b1e693192597105cab8a5e6c80788d6fba28ea95bb4ec55f78b52104b4980cc5c93d8506455935fa22ec27a4e994e4c2204fa599ca03b960f
|
|
7
|
+
data.tar.gz: 26f1bc74bb06a32d7efab07ddd12baf5483719364e928ceac6b21c139f1a82240cc31313bae462c130651ebbe3afcb806ab84af2a8886d33314f0d1011f9d380
|
data/data/properties.txt
CHANGED
data/lib/scss_lint/version.rb
CHANGED
|
@@ -242,4 +242,18 @@ describe SCSSLint::Linter::DuplicateProperty do
|
|
|
242
242
|
it { should report_lint line: 3 }
|
|
243
243
|
end
|
|
244
244
|
end
|
|
245
|
+
|
|
246
|
+
context 'when media query contains duplicates' do
|
|
247
|
+
let(:scss) { <<-SCSS }
|
|
248
|
+
p {
|
|
249
|
+
@media (min-width: 400px) {
|
|
250
|
+
margin: 0;
|
|
251
|
+
padding: 0;
|
|
252
|
+
margin: 1em;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
SCSS
|
|
256
|
+
|
|
257
|
+
it { should report_lint line: 5 }
|
|
258
|
+
end
|
|
245
259
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scss_lint
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.51.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brigade Engineering
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-12-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -20,7 +20,7 @@ dependencies:
|
|
|
20
20
|
version: '0.9'
|
|
21
21
|
- - "<"
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version: '
|
|
23
|
+
version: '13'
|
|
24
24
|
type: :runtime
|
|
25
25
|
prerelease: false
|
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
version: '0.9'
|
|
31
31
|
- - "<"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '13'
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: sass
|
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -272,7 +272,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
272
272
|
version: '0'
|
|
273
273
|
requirements: []
|
|
274
274
|
rubyforge_project:
|
|
275
|
-
rubygems_version: 2.5.
|
|
275
|
+
rubygems_version: 2.5.2
|
|
276
276
|
signing_key:
|
|
277
277
|
specification_version: 4
|
|
278
278
|
summary: SCSS lint tool
|