summary refs log tree commit diff
path: root/synapse_topology/webui/.stylelintrc.js
blob: f028c76cc0f92d60868e87b1dead4a010c8f9fa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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, {
            // https://github.com/vector-im/riot-web/issues/10544
            "ignoreAtRules": ["define-mixin"],
        }],
    }
}