spacex / .stylelintrc.json
neon_arch
🩹 fix: remove unnecessary `stylelint` checks by disabling them in the `stylelint` config file (#375)
faf9995
raw
history blame
No virus
302 Bytes
{
"extends": "stylelint-config-standard",
"rules": {
"alpha-value-notation": "number",
"selector-class-pattern": null,
"no-descending-specificity": null
},
"fix": true,
"cache": true,
"overrides": [
{
"files": ["*.js"],
"customSyntax": "postcss-lit"
}
]
}