Files
e-ticket/.stylelintrc.json

11 lines
321 B
JSON
Raw Permalink Normal View History

{
"extends": "stylelint-config-standard-scss",
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [true, {
"ignoreAtRules": ["use", "tailwind", "apply", "variants", "responsive", "screen", "layer", "source"]
}],
"no-descending-specificity": null
}
}