1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages

Add browser asset quality gate

This commit is contained in:
Andraxion 2026-07-24 22:36:44 -04:00
parent 2841042b9c
commit 5ccb336e84
14 changed files with 2898 additions and 16 deletions

16
stylelint.config.mjs Normal file
View file

@ -0,0 +1,16 @@
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,
},
};