You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
705 B

5 years ago
{
"extends": [
"stylelint-config-recommended-scss",
"stylelint-config-standard"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
'extend',
'at-root',
'debug',
'warn',
'error',
'if',
'else',
'for',
'each',
'while',
'mixin',
'include',
'content',
'return',
'function'
]
}
],
"selector-type-no-unknown": [
true,
{
"ignore": [
"custom-elements"
]
}
],
"no-descending-specificity": null
}
}