fxa/_dev/.stylelintrc

34 строки
608 B
Plaintext
Executable File

{
"ignoreFiles": [
"../packages/fxa-content-server/**"
],
"extends": "stylelint-config-prettier",
"rules": {
"declaration-empty-line-before": "never",
"selector-max-id": [
0,
{
"message": "Using ID selectors is discouraged",
"severity": "warning"
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"function",
"if",
"each",
"include",
"mixin",
"use",
"extend",
"screen",
"layer"
]
}
]
}
}