Files
bedrock/.stylelintrc
Joshua Fredrickson 319d5ad1a0 fix(lint): Add additional known at-rules (#2811)
Allows use of `@use`, `@forward` and `@layer` in `.scss` files.
2021-11-23 11:39:21 -06:00

43 lines
872 B
Plaintext

{
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": null,
"selector-class-pattern": null,
"declaration-colon-newline-after": null,
"value-list-comma-newline-after": null,
"no-empty-source": null,
"no-descending-specificity": null,
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"tailwind",
"apply",
"responsive",
"variants",
"screen",
"function",
"use",
"forward",
"layer"
]
}
]
}
}