ΝΙΚΟΛΑΣ
ΝΙΚΟΛΑΣ
@SwagSamaSempai I could expose an `ignoreFiles[]` option which would allow you to ignore specific files or wildcards from formatting, eg: ```json ignoreFiles: [ "dir/*.liquid", "dir2/specific.liquid" ] ``` I suppose a...
Troubleshooting this issue in *v2.3.0*: Issues like this are generally caused due to conflicting workspace settings, try the following: 1. Set the `editor.formatOnSave` option to `true` 2. Set the `liquid.format`...
In workspace settings, set the default formatter: ```json { "[html]": { "editor.defaultFormatter": "sissel.shopify-liquid", "editor.codeActionsOnSave": { "source.fixAll.eslint": false } } } ```
Do the following: 1. Make sure `editor.formatOnSave` is set to `true` 2. In some cases, applying file association might help, eg: `"files.associations": { "*.liquid": "html" }` 3. Make sure you've...
Also, sometimes a restart does the trick. These issues have all been addressed in Liquify which I will begin to release over the next couple of weeks.
Glad you could work it out. Yeah, the Twig extension should be avoided. I'm really looking forward getting all active users off this version, it's well overdue. Thanks for taking...
So for attributes and expressing Liquid in this manner the formatter is actually doing its job, the problem you are making is using double quotations without escaping, just use single...
@MeffMara Disable prettier. Do not use in conjunction with the Sparser/PrettyDiff. Also, check you HTML code. This is known issue that has been addressed in Liquify. I am back working...
🚢 Shipped [v3.0.0](https://github.com/panoply/vscode-liquid/releases/tag/v3.0.0) This error should no longer persist. Take a look at the release notes and readme
Hej, - Select HTML as the language in VSCode, not Liquid (this will change in next release, be aware). - You can adjust spacing in your vscode preferences, or if...