27 lines
525 B
JSON
27 lines
525 B
JSON
{
|
|
"extends": "stylelint-config-standard",
|
|
"rules": {
|
|
"declaration-property-value-no-unknown": true,
|
|
"import-notation": null,
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": [
|
|
"theme",
|
|
"apply",
|
|
"tailwind",
|
|
"config",
|
|
"plugin",
|
|
"source",
|
|
"utility",
|
|
"variant",
|
|
"custom-variant",
|
|
"reference"
|
|
]
|
|
}
|
|
],
|
|
"color-function-notation": null,
|
|
"alpha-value-notation": null
|
|
}
|
|
}
|