Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.stylelintrc.json - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b432280ac2858865b152e7942be809a1c7a0b444 (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
{
    "extends": [
        "stylelint-config-standard",
        "stylelint-config-recommended-scss"
    ],
    "rules": {
        "no-descending-specificity": null,
        "no-duplicate-selectors": null,
        "block-closing-brace-newline-after": ["always", {
            "ignoreAtRules": ["if", "else"]
        }],
        "at-rule-empty-line-before": ["always", {
            "except": [
                "blockless-after-same-name-blockless",
                "first-nested"
            ],
            "ignore": ["after-comment"],
            "ignoreAtRules": ["else"]
        }],
        "value-keyword-case": [
            "lower",
            {
                "ignoreProperties": [
                    "$font-family-monospace"
                ]
            }
        ]
    }
}