{ "extends": [ "stylelint-config-recommended-scss", "stylelint-config-standard" ], "plugins": [ "stylelint-scss" ], "rules": { "at-rule-no-unknown": [ true, { ignoreAtRules: [ 'extend', 'at-root', 'debug', 'warn', 'error', 'if', 'else', 'for', 'each', 'while', 'mixin', 'include', 'content', 'return', 'function' ] } ], "selector-type-no-unknown": [ true, { "ignore": [ "custom-elements" ] } ], "no-descending-specificity": null } }