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,
|
2019-11-08 17:10:51 +01:00
|
|
|
"no-descending-specificity": null,
|
2019-08-13 16:40:03 +02:00
|
|
|
"scss/at-rule-no-unknown": [true, {
|
2020-08-03 17:02:26 +02:00
|
|
|
// https://github.com/vector-im/element-web/issues/10544
|
2019-08-13 16:40:03 +02:00
|
|
|
"ignoreAtRules": ["define-mixin"],
|
|
|
|
}],
|
2019-04-09 15:20:17 +02:00
|
|
|
}
|
|
|
|
}
|