tasks/.stylelintrc

17 lines
362 B
Text
Raw Normal View History

{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"rules": {
"indentation": "tab",
"number-leading-zero": "never",
"comment-empty-line-before": ["always", {
"except": ["first-nested"]
}],
"at-rule-no-unknown": null,
2018-06-18 15:17:18 +00:00
"scss/at-rule-no-unknown": true,
"no-descending-specificity": null
}
}