@eandl/stylelint-config
Version:
stylelint config for TheInsuranceEmporium
18 lines • 481 B
JavaScript
export default {
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"indentation": 4,
"color-hex-case": "upper",
"font-family-name-quotes": "always-unless-keyword",
"color-hex-length": "long",
"declaration-no-important": true,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true
},
}