theme-check 1.13.0 → 1.15.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/CHANGELOG.md +13 -0
- data/data/shopify_liquid/documentation/filters.json +90 -60
- data/data/shopify_liquid/documentation/objects.json +996 -348
- data/data/shopify_liquid/documentation/tags.json +81 -30
- data/docs/checks/img_lazy_loading.md +7 -5
- data/docs/checks/schema_json_format.md +3 -3
- data/lib/theme_check/checks/img_lazy_loading.rb +1 -5
- data/lib/theme_check/cli.rb +15 -0
- data/lib/theme_check/language_server/completion_providers/filter_completion_provider.rb +15 -9
- data/lib/theme_check/shopify_liquid/documentation/markdown_template.rb +1 -1
- data/lib/theme_check/shopify_liquid/source_index/base_entry.rb +7 -1
- data/lib/theme_check/shopify_liquid/source_index/filter_entry.rb +5 -1
- data/lib/theme_check/shopify_liquid/source_index/object_entry.rb +7 -1
- data/lib/theme_check/shopify_liquid/source_index/parameter_entry.rb +4 -0
- data/lib/theme_check/shopify_liquid/source_index/property_entry.rb +13 -1
- data/lib/theme_check/shopify_liquid/source_index/return_type_entry.rb +4 -0
- data/lib/theme_check/shopify_liquid/source_index/tag_entry.rb +4 -0
- data/lib/theme_check/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f431a7aed9be02cea5198104449f31ca23fad3dc36bbca6372d0746544d41996
|
4
|
+
data.tar.gz: 57d65be02e66672324a61ca469d714bddcf36ff029d2f36cd5714f277074706f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4875e5a214fb3fccf59cd8358f2e7a12009b5ec5b9212d869d8613532d5943a32ef48ee697ebb61b6404bf61a8b05d8811e01c4e41cc4fcedd69a5caeea9fd1c
|
7
|
+
data.tar.gz: 80f0bce8792f5abf066831dfc0d56af96f9fa4952b9af09a883ea839cdb94205632150d740c408ebe1e5ac1122da8974920c6b9d31d54a325928493198b73fe7
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1
1
|
|
2
|
+
v1.15.0 / 2023-04-14
|
3
|
+
==================
|
4
|
+
|
5
|
+
* Improve rule for lazy loading to prevent developers from overusing it
|
6
|
+
* Introduce `--update-docs` flag to synchronously update Theme Check resources (objects, filters, and tags) (#707)
|
7
|
+
|
8
|
+
v1.14.0 / 2023-01-10
|
9
|
+
==================
|
10
|
+
|
11
|
+
* Add shopify-dev link to code completion suggestion title ([#700](https://github.com/Shopify/theme-check/issues/700))
|
12
|
+
* Fix examples in `SchemaJsonFormat` ([#698](https://github.com/Shopify/theme-check/issues/698))
|
13
|
+
* Do not suggest `escape` filter for already escaped strings ([#692](https://github.com/Shopify/theme-check/issues/692))
|
14
|
+
|
2
15
|
v1.13.0 / 2023-01-04
|
3
16
|
==================
|
4
17
|
|