2019-04-09 16:20:17 +03:00
|
|
|
module.exports = {
|
|
|
|
"extends": "stylelint-config-standard",
|
2019-07-09 20:35:57 +03:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss",
|
|
|
|
],
|
2019-04-09 16:20:17 +03:00
|
|
|
"rules": {
|
|
|
|
"indentation": 4,
|
2019-04-09 16:30:51 +03:00
|
|
|
"comment-empty-line-before": null,
|
2019-04-09 17:03:13 +03: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 20:35:57 +03:00
|
|
|
"at-rule-no-unknown": null,
|
2019-11-08 19:10:51 +03:00
|
|
|
"no-descending-specificity": null,
|
2019-08-13 17:40:03 +03:00
|
|
|
"scss/at-rule-no-unknown": [true, {
|
2020-08-03 18:02:26 +03:00
|
|
|
// https://github.com/vector-im/element-web/issues/10544
|
2019-08-13 17:40:03 +03:00
|
|
|
"ignoreAtRules": ["define-mixin"],
|
|
|
|
}],
|
2019-04-09 16:20:17 +03:00
|
|
|
}
|
|
|
|
}
|