platformos-check 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ba2a7bdea1c4f4efa47ec56d9bdd78af6a9f1a6997d45390b3463c81699b6c1
4
- data.tar.gz: 0363b92c73e69aea53f5222fe0d1dab25638446a2fbd3ae6fe30efbea6db9d0b
3
+ metadata.gz: b560f1b22edc85eadceb664db3c5cf1d0e844c33f54bf8bf8c15b288ac78648c
4
+ data.tar.gz: 49b94ae62cfa63cbc5308ac6ad20226ca95fa475378233d19ec2c67da501688c
5
5
  SHA512:
6
- metadata.gz: f49c148021d7a80b8f40dd33b10c997a05dc1ffc9600043eec6ce85de7d906266edaad5aae42e93554773a01a87e09254b7c2b4d9c9d49c4c9e468fbb2d8821d
7
- data.tar.gz: 35647ae9b84e54798383c60ea57fc298b57b533c23e499b76b035135bd417b0e688ea5078dcd1820871911c7e155937315f3e608baf2852b274f111bddbdc547
6
+ metadata.gz: 267f9d075571e75979a8026a3c309ebb1aa0888d2f8ea1d6e4df8476358e28b0ff9e16272267fdae93f2c9f48d1aa47aaaa4aecf41c2b288804314de509534e8
7
+ data.tar.gz: 748a49ba89dfbf6444ef427f22c1e26c53bd9caac526743297a2a4063c1ebe20f6766c3fdbf8290fb70534699719b858dd85e631b3637c3fb3155382049845e7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
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
+
1
7
  v0.2.0 / 2023-09-13
2
8
  ==================
3
9
 
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: