platformos-check 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c1d041a69002febe0f7b118bbe6de77868c16780972f3c567b4835575cb3491
4
- data.tar.gz: 12e2442882f8bea0a12dbeea557b5c4b9a74a94db919d8c740862bcdb8b7e03e
3
+ metadata.gz: b560f1b22edc85eadceb664db3c5cf1d0e844c33f54bf8bf8c15b288ac78648c
4
+ data.tar.gz: 49b94ae62cfa63cbc5308ac6ad20226ca95fa475378233d19ec2c67da501688c
5
5
  SHA512:
6
- metadata.gz: addc32a98bdbcab0b7f5093ab5878fa9ad23c879c23fe90e3152fa6bfc0be2df2d2ed3f34fd805d8b52bc998ac006bfb448708642b4851735abd78f9ba32621d
7
- data.tar.gz: e4db84164580fc87b9195cf22100d704af7c9072aa67549a011efef9d7eed064f901c5d6d2f4dd3887dcf1fb1b70d24194c79c2d0b6ed01c691e419b7e159bae
6
+ metadata.gz: 267f9d075571e75979a8026a3c309ebb1aa0888d2f8ea1d6e4df8476358e28b0ff9e16272267fdae93f2c9f48d1aa47aaaa4aecf41c2b288804314de509534e8
7
+ data.tar.gz: 748a49ba89dfbf6444ef427f22c1e26c53bd9caac526743297a2a4063c1ebe20f6766c3fdbf8290fb70534699719b858dd85e631b3637c3fb3155382049845e7
data/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
- v0.1.0 /
1
+ v0.2.1 / 2023-09-14
2
+ ==================
3
+
4
+ * Single file should be default mode for LSP now
5
+ * Make all checks work in single file mode - greatly enhance performance
6
+
7
+ v0.2.0 / 2023-09-13
8
+ ==================
9
+
10
+ * Completion and hover for tags
11
+ * Fix completion from the middle of the partial
12
+
13
+ v0.1.0 / 2023-09-13
2
14
  ==================
3
15
 
4
16
  * Better documentation for filters
data/CONTRIBUTING.md CHANGED
@@ -55,7 +55,7 @@ Before configuring your IDE, run the following commands in a terminal:
55
55
 
56
56
  ```
57
57
  "platformosCheck.checkOnChange": true,
58
- "platformosCheck.onlySingleFileChecks": false,
58
+ "platformosCheck.onlySingleFileChecks": true,
59
59
  "platformosLiquid.languageServerPath": "/Users/<your user>/bin/platformos-check-language-server",
60
60
  "platformosCheck.checkOnOpen": true,
61
61
  "platformosCheck.checkOnSave": true
@@ -77,7 +77,7 @@ If you use `coc.nvim` as your completion engine, add this to your CocConfig:
77
77
  "platformosCheck": {
78
78
  "checkOnSave": true,
79
79
  "checkEnter": true,
80
- "onlySingleFileChecks": false,
80
+ "onlySingleFileChecks": true,
81
81
  "checkOnChange": true,
82
82
  "checkOnOpen": true
83
83
  }
data/README.md CHANGED
@@ -193,7 +193,7 @@ DeprecateLazysizes:
193
193
  - `platformosCheck.checkOnOpen` (default: `true`) makes it so theme check runs on file open.
194
194
  - `platformosCheck.checkOnChange` (default: `true`) makes it so theme check runs on file change.
195
195
  - `platformosCheck.checkOnSave` (default: `true`) makes it so theme check runs on file save.
196
- - `platformosCheck.onlySingleFileChecks` (default: `false`) makes it so we only check the opened files and disable "whole theme" checks (e.g. UnusedPartial, TranslationKeyExists)
196
+ - `platformosCheck.onlySingleFileChecks` (default: `false`) makes it so we only check the opened files and disable "whole application" checks (e.g. UnusedPartial, TranslationKeyExists)
197
197
 
198
198
  ⚠️ **Note:** Quickfixes only work on a freshly checked file. If any of those configurations are turned off, you will need to rerun platformos-check in order to apply quickfixes.
199
199
 
data/config/default.yml CHANGED
@@ -65,7 +65,6 @@ ValidYaml:
65
65
  UndefinedObject:
66
66
  enabled: true
67
67
  ignore: []
68
- exclude_partials: true
69
68
  config_type: :default
70
69
 
71
70
  DeprecatedFilter: