moodist/.stylelintrc.json
2023-10-05 16:47:45 +03:30

22 lines
371 B
JSON

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