2019-04-09 15:20:17 +02:00
|
|
|
module.exports = {
|
|
|
|
"extends": "stylelint-config-standard",
|
2019-07-09 19:35:57 +02:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss",
|
|
|
|
],
|
2019-04-09 15:20:17 +02:00
|
|
|
"rules": {
|
|
|
|
"indentation": 4,
|
2019-04-09 15:30:51 +02:00
|
|
|
"comment-empty-line-before": null,
|
2019-04-09 16:03:13 +02:00
|
|
|
"declaration-empty-line-before": null,
|
|
|
|
"length-zero-no-unit": null,
|
|
|
|
"rule-empty-line-before": null,
|
|
|
|
"color-hex-length": null,
|
|
|
|
"max-empty-lines": null,
|
|
|
|
"number-no-trailing-zeros": null,
|
|
|
|
"number-leading-zero": null,
|
|
|
|
"selector-list-comma-newline-after": null,
|
2019-07-09 19:35:57 +02:00
|
|
|
"at-rule-no-unknown": null,
|
|
|
|
"scss/at-rule-no-unknown": true,
|
2019-04-09 15:20:17 +02:00
|
|
|
}
|
|
|
|
}
|