26 lines
785 B
JSON
26 lines
785 B
JSON
{
|
|
"extends": ["stylelint-config-standard", "stylelint-config-tailwindcss", "stylelint-config-prettier"],
|
|
"plugins": ["stylelint-config-tailwindcss"],
|
|
"rules": {
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen", "layer"]
|
|
}
|
|
],
|
|
"declaration-block-trailing-semicolon": null,
|
|
"no-descending-specificity": null,
|
|
"function-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreFunctions": ["theme", "screen"]
|
|
}
|
|
],
|
|
"selector-class-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"property-no-vendor-prefix": null,
|
|
"value-no-vendor-prefix": null
|
|
},
|
|
"ignoreFiles": ["node_modules/**/*", ".next/**/*", "out/**/*", "dist/**/*", "build/**/*", "coverage/**/*"]
|
|
}
|