slim_lint_standard 0.0.3.2 → 0.0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/default.yml +1 -2
- data/lib/slim_lint/linter/redundant_div.rb +3 -3
- data/lib/slim_lint/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afbc4173dc8ea740433e3d87b6bd17763705cc9d12a4138d8c8cb0a55ea1b997
|
4
|
+
data.tar.gz: 6a48418c1320a2cc27967c40aec90db4103e75b39f44b2ae11f6df4b6b547bfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2267b4557bec4e0b72096b53b74fe677b7909376e227c2ea322af69e2444123db0476f33540758d0661725751796150a371b4ea57906fd4d1d97f32e541a8f8d
|
7
|
+
data.tar.gz: f19acd284f7031f1aa172ebd9337542a40d61152b9ef9ce71d012e2b72f0340c92b198b024d0987110f61d431e2e96a51506cd52e09d6c0173f6c83a93c26382
|
data/config/default.yml
CHANGED
@@ -8,10 +8,10 @@ module SlimLint
|
|
8
8
|
|
9
9
|
SHORTCUT_ATTRS = %w[id class]
|
10
10
|
IMPLICIT_MESSAGE = "`div` is redundant when %s attribute shortcut is present"
|
11
|
-
EXPLICIT_MESSAGE = "explicit `div` is preferred over bare
|
11
|
+
EXPLICIT_MESSAGE = "explicit `div` is preferred over bare shorthand"
|
12
12
|
|
13
13
|
on [:html, :tag, capture(:tag, anything), capture(:attrs, [:html, :attrs]), anything] do |sexp|
|
14
|
-
case @config["
|
14
|
+
case @config["style"]
|
15
15
|
when "implicit", :implicit
|
16
16
|
_, _, name, value = captures[:attrs][2]
|
17
17
|
next unless captures[:tag] == "div"
|
@@ -21,7 +21,7 @@ module SlimLint
|
|
21
21
|
report_lint(sexp[2], IMPLICIT_MESSAGE % name)
|
22
22
|
when "explicit", :explicit
|
23
23
|
next unless captures[:tag] == "." || captures[:tag] == "#"
|
24
|
-
report_lint(sexp[2], EXPLICIT_MESSAGE
|
24
|
+
report_lint(sexp[2], EXPLICIT_MESSAGE)
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
data/lib/slim_lint/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slim_lint_standard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.3.
|
4
|
+
version: 0.0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pieter van de Bruggen
|
8
8
|
- Shane da Silva
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2025-01-29 00:00:00.000000000 Z
|
@@ -224,7 +224,7 @@ homepage: https://github.com/pvande/slim-lint-standard
|
|
224
224
|
licenses:
|
225
225
|
- MIT
|
226
226
|
metadata: {}
|
227
|
-
post_install_message:
|
227
|
+
post_install_message:
|
228
228
|
rdoc_options: []
|
229
229
|
require_paths:
|
230
230
|
- lib
|
@@ -239,8 +239,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
239
|
- !ruby/object:Gem::Version
|
240
240
|
version: '0'
|
241
241
|
requirements: []
|
242
|
-
rubygems_version: 3.
|
243
|
-
signing_key:
|
242
|
+
rubygems_version: 3.0.3.1
|
243
|
+
signing_key:
|
244
244
|
specification_version: 4
|
245
245
|
summary: Linter for Slim templates
|
246
246
|
test_files: []
|