16 lines
534 B
JavaScript
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,
|
|
},
|
|
};
|