2019-04-09 21:20:17 +08:00
|
|
|
module.exports = {
|
|
|
|
"extends": "stylelint-config-standard",
|
2019-07-10 01:35:57 +08:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss",
|
|
|
|
],
|
2019-04-09 21:20:17 +08:00
|
|
|
"rules": {
|
2021-04-02 15:03:28 +08:00
|
|
|
"color-hex-case": null,
|
2019-04-09 21:20:17 +08:00
|
|
|
"indentation": 4,
|
2019-04-09 21:30:51 +08:00
|
|
|
"comment-empty-line-before": null,
|
2019-04-09 22:03:13 +08:00
|
|
|
"declaration-empty-line-before": null,
|
|
|
|
"length-zero-no-unit": null,
|
|
|
|
"rule-empty-line-before": null,
|
|
|
|
"color-hex-length": null,
|
2021-10-26 15:23:23 +08:00
|
|
|
"max-empty-lines": 1,
|
|
|
|
"no-eol-whitespace": true,
|
2019-04-09 22:03:13 +08:00
|
|
|
"number-no-trailing-zeros": null,
|
|
|
|
"number-leading-zero": null,
|
|
|
|
"selector-list-comma-newline-after": null,
|
2019-07-10 01:35:57 +08:00
|
|
|
"at-rule-no-unknown": null,
|
2019-11-09 00:10:51 +08:00
|
|
|
"no-descending-specificity": null,
|
2021-08-24 16:09:28 +08:00
|
|
|
"no-empty-first-line": true,
|
2019-08-13 22:40:03 +08:00
|
|
|
"scss/at-rule-no-unknown": [true, {
|
2020-08-03 23:02:26 +08:00
|
|
|
// https://github.com/vector-im/element-web/issues/10544
|
2019-08-13 22:40:03 +08:00
|
|
|
"ignoreAtRules": ["define-mixin"],
|
|
|
|
}],
|
2022-03-24 02:23:23 +08:00
|
|
|
// Disable `&_kind`-style selectors while our unused CSS approach is "Find & Replace All"
|
|
|
|
// rather than a CI thing. Shorthand selectors are harder to detect when searching for a
|
|
|
|
// class name. This regex is trying to *allow* anything except `&words`, such as `&::before`,
|
|
|
|
// `&.mx_Class`, etc.
|
|
|
|
"selector-nested-pattern": "^((&[ :.\\\[,])|([^&]))"
|
2019-04-09 21:20:17 +08:00
|
|
|
}
|
|
|
|
}
|