antares/.stylelintrc

15 lines
244 B
Plaintext
Raw Normal View History

2020-07-31 18:16:28 +02:00
{
"extends": [
"stylelint-config-standard"
],
"fix": true,
"formatter": "verbose",
"plugins": [
"stylelint-scss"
],
"rules": {
2021-04-03 11:21:58 +02:00
"at-rule-no-unknown": null,
"no-descending-specificity": null
2020-07-31 18:16:28 +02:00
},
"syntax": "scss"
}