summaryrefslogtreecommitdiffstats
path: root/.stylelintrc
blob: 0bcdb7c271f2f1817ce1c078818dc05c0b4694fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "extends": "stylelint-config-standard",
    "customSyntax": "postcss-html",
    "rules": {
        "indentation": 4,
        "no-descending-specificity": null,
        "selector-list-comma-newline-after": null,
        "declaration-empty-line-before": null,
        "alpha-value-notation": "number",
        "color-function-notation": "legacy",
        "shorthand-property-no-redundant-values": null,
        "color-hex-length": null,
        "declaration-block-no-redundant-longhand-properties": null,
        "at-rule-no-unknown": null
    }
}