{ "extends": ["stylelint-config-standard-scss", "stylelint-config-recommended"], "plugins": ["stylelint-order", "stylelint-scss"], "rules": { "at-rule-no-unknown": null, "keyframes-name-pattern": null, "declaration-block-no-redundant-longhand-properties": null, "selector-class-pattern": null, "no-descending-specificity": null, "scss/function-no-unknown": null, "scss/no-global-function-names": null, "function-url-quotes": null, "font-family-no-missing-generic-family-keyword": null, "order/order": ["custom-properties", "declarations"], "scss/dollar-variable-pattern": [ "^[a-z][a-zA-Z]+$", { "ignore": "global" } ], "selector-pseudo-class-no-unknown": [ true, { "ignorePseudoClasses": ["global", "export"] } ], "property-no-vendor-prefix": [ true, { "ignoreProperties": ["box-decoration-break"] } ], "annotation-no-unknown": [ true, { "ignoreAnnotations": ["default"] } ], "scss/at-function-pattern": null, "scss/at-mixin-pattern": null, "scss/percent-placeholder-pattern": null, "scss/dollar-variable-colon-space-after": "always-single-line", "scss/dollar-variable-colon-space-before": "never", "scss/double-slash-comment-empty-line-before": [ "always", { "except": ["first-nested"], "ignore": ["between-comments", "stylelint-commands"] } ], "scss/double-slash-comment-whitespace-inside": "always", "scss/operator-no-newline-after": null, "scss/operator-no-newline-before": null, "scss/operator-no-unspaced": null, "scss/no-duplicate-dollar-variables": null, "scss/no-duplicate-mixins": null, "function-no-unknown": [ true, { "ignoreFunctions": ["divide", "transparentize"] } ] }, "defaultSeverity": "warning" }