Add stylelint config

This commit is contained in:
Sebastian 2024-09-26 01:53:07 +02:00
parent 38005c5909
commit a6a6f8ab02

11
.stylelintrc.json Normal file
View File

@ -0,0 +1,11 @@
{
"extends": ["stylelint-config-standard", "stylelint-config-html/html"],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["tailwind"]
}
]
}
}