Add browser asset quality gate
This commit is contained in:
parent
2841042b9c
commit
5ccb336e84
14 changed files with 2898 additions and 16 deletions
16
stylelint.config.mjs
Normal file
16
stylelint.config.mjs
Normal 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,
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue