1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages
DocForge2/stylelint.config.mjs

16 lines
534 B
JavaScript

export default {
extends: ["stylelint-config-standard"],
plugins: ["stylelint-csstree-validator"],
rules: {
"csstree/validator": true,
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"color-function-alias-notation": null,
"color-function-notation": null,
"custom-property-empty-line-before": null,
"declaration-block-single-line-max-declarations": null,
"declaration-empty-line-before": null,
"media-feature-range-notation": null,
"rule-empty-line-before": null,
},
};