You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-12 07:02:50 +03:00
This adds extra SCSS-specific rules. In particular, there's a modified at rule processing rule which understands `mixin` and friends.
21 lines
603 B
JavaScript
21 lines
603 B
JavaScript
module.exports = {
|
|
"extends": "stylelint-config-standard",
|
|
"plugins": [
|
|
"stylelint-scss",
|
|
],
|
|
"rules": {
|
|
"indentation": 4,
|
|
"comment-empty-line-before": null,
|
|
"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,
|
|
"at-rule-no-unknown": null,
|
|
"scss/at-rule-no-unknown": true,
|
|
}
|
|
}
|