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: f55e8f39229c8f1735c42dada27669316c0a23b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "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"]
        }]
    }
}