moodist/.stylelintrc.json
2024-08-31 19:05:12 +03:30

24 lines
407 B
JSON

{
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order",
"stylelint-config-html",
"stylelint-prettier/recommended"
],
"rules": {
"import-notation": "string",
"selector-class-pattern": null,
"no-descending-specificity": null
},
"overrides": [
{
"files": ["*.astro"],
"rules": {
"prettier/prettier": null
}
}
]
}