With Stylelint's CSS order option enabled, I'm having trouble getting Visual Studio Code to display the errors. Where can I locate the declaration/property order being used?
Below is a snippet of my .stylelintrc.js configuration file:
module.exports = {
extends: ['stylelint-config-standard', 'stylelint-config-concentric-order'],
rules: {
'at-rule-no-unknown': [
true,
{ ignoreAtRules: ['mixin', 'if', 'else', 'include', 'extend'] },
],
'max-nesting-depth': 4,
indentation: 4,
'selector-pseudo-element-no-unknown': [
true,
{ ignorePseudoElements: ['v-deep'] },
],
},
};