bmatcuk/coc-stylelintplus

stylelint config not working

Opened this issue · 1 comments

i have in my project folder the following .stylelintrc.json

"extends": [ "stylelint-config-sass-guidelines", "stylelint-config-rational-order" ], "plugins": [ "stylelint-a11y" ], "rules": { "max-nesting-depth": 3, "a11y/content-property-no-static-value": true, "a11y/font-size-is-readable": true, "a11y/line-height-is-vertical-rhythmed": true, "a11y/media-prefers-reduced-motion": true, "a11y/media-prefers-color-scheme": null, "a11y/no-display-none": null, "a11y/no-obsolete-attribute": true, "a11y/no-obsolete-element": true, "a11y/no-spread-text": true, "a11y/no-outline-none": true, "a11y/no-text-align-justify": true, "a11y/selector-pseudo-class-focus": true } }
but coc-stylelintplus doesnt work with this config. In which format i must write the config or what seetings i must set to get this plugin to get work.

Have you tried running stylelint on the command line with this config to see if there are any errors? coc-stylelintplus just runs stylelint under-the-hood, so it'll work with any valid stylelint config.