Add stylelint config

This commit is contained in:
Sebastian 2024-09-26 01:53:07 +02:00
parent 1f032c2954
commit c02fd889dd
No known key found for this signature in database

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"]
}
]
}
}