aboutsummaryrefslogtreecommitdiffstats
path: root/.stylelintrc.json
blob: 9e810e112261c80e8d6bfe1f90eaada5ad282153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
    "extends": "stylelint-config-standard",
    "overrides": [
        {
            "files": ["**/*.html"],
            "customSyntax": "postcss-html"
        },
        {
            "files": ["**/*.js"],
            "customSyntax": "@stylelint/postcss-css-in-js"
        }
    ],
    "ignoreFiles": [
        "**/*.min.css",
        "**/*.min.js",
        "interface/css/d3evolution.css",
        "interface/css/nprogress.css",
        "interface/css/prism.css"
    ],
    "rules": {
        "alpha-value-notation": null,
        "at-rule-empty-line-before": null,
        "color-hex-length": null,
        "comment-empty-line-before": null,
        "indentation": 4,
        "number-leading-zero": null,
        "property-no-vendor-prefix": null,
        "rule-empty-line-before": null,
        "value-no-vendor-prefix": null
    }
}