19 lines
416 B
Text
19 lines
416 B
Text
{
|
|
"extends": "stylelint-config-standard",
|
|
"plugins": [
|
|
"stylelint-scss"
|
|
],
|
|
"ignoreFiles": [
|
|
"./css/src/sprite.scss"
|
|
],
|
|
"rules": {
|
|
"indentation": "tab",
|
|
"number-leading-zero": "never",
|
|
"comment-empty-line-before": ["always", {
|
|
"except": ["first-nested"]
|
|
}],
|
|
"at-rule-no-unknown": null,
|
|
"scss/at-rule-no-unknown": true,
|
|
"no-descending-specificity": null
|
|
}
|
|
}
|