moodist/.stylelintrc.json
2023-12-10 15:37:37 +03:30

23 lines
368 B
JSON

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