You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When viewing CSS rules in style.less {} in *.marko components in VS Code, I would like to see Stylelint warnings and NOT see duplicate warnings from the Marko extension.
I have figured out how to get:
TailwindCSS providing class name suggestions inside of *.marko files in the <html></html> section
Stylelint and TailwindCSS working in *.less files
Stylelint working with postcss-html custom syntax in *.marko files if I use <style></style> instead of style {}
In the following, I can get a Stylelint warning to show, but cannot figure out how to suppress the duplicate style warning from Marko, from appearing:
<style>
i {
}
</style>
It would be ideal to be able to write the following and see a Stylelint error in VS Code with no duplicate warning from Marko:
style.less {
i {
}
}
Please consider supporting that functionality and documenting it.
The text was updated successfully, but these errors were encountered:
I installed the Svelte VS Code extension to see if they had the same problem. I set up Stylelint and got it to report errors through VS Code. Similar to Marko, there were duplicate warnings showing up, one warning from Svelte and one from Stylelint. The Svelte VS Code extension has this setting, which I couldn't find an equivalent for in the Marko extension:
The above setting suppresses the duplicate Svelte warnings, so that only the Stylelint errors show. Is there any equivalent way to suppress style warnings in the Marko VS Code extension so that I can use only Stylelint?
When viewing CSS rules in style.less {} in *.marko components in VS Code, I would like to see Stylelint warnings and NOT see duplicate warnings from the Marko extension.
I have figured out how to get:
<html></html>
sectionpostcss-html
custom syntax in *.marko files if I use<style></style>
instead of style {}In the following, I can get a Stylelint warning to show, but cannot figure out how to suppress the duplicate style warning from Marko, from appearing:
It would be ideal to be able to write the following and see a Stylelint error in VS Code with no duplicate warning from Marko:
Please consider supporting that functionality and documenting it.
The text was updated successfully, but these errors were encountered: