This repository has been archived on 2021-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
beta.coopcloud.tech/.stylelintrc.json

34 lines
615 B
JSON
Raw Permalink Normal View History

2021-12-30 19:46:53 +00:00
{
"extends": "stylelint-config-standard",
"rules": {
"no-empty-source": null,
"string-quotes": "double",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"function",
"tailwind",
"apply",
"responsive",
"variants",
"screen"
]
}
]
}
}