build: add additional stylelint rules

This commit is contained in:
Ben Goldsworthy 2021-04-25 20:02:38 +01:00
parent 532cb85dee
commit a8ee8bf8d9
3 changed files with 3359 additions and 853 deletions

View file

@ -1,3 +1,18 @@
{
"extends": "stylelint-config-wordpress"
"extends": [
"stylelint-config-wordpress",
"stylelint-config-recommended",
"stylelint-a11y/recommended",
"stylelint-config-rational-order"
],
"plugins": [
"stylelint-scss",
"stylelint-a11y",
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true
}
}