Translated using Weblate (Slovenian)
[phpmyadmin.git] / .stylelintrc.json
blobf55e8f39229c8f1735c42dada27669316c0a23b0
2     "extends": [
3         "stylelint-config-standard",
4         "stylelint-config-recommended-scss"
5     ],
6     "rules": {
7         "no-descending-specificity": null,
8         "no-duplicate-selectors": null,
9         "block-closing-brace-newline-after": ["always", {
10             "ignoreAtRules": ["if", "else"]
11         }],
12         "at-rule-empty-line-before": ["always", {
13             "except": [
14                 "blockless-after-same-name-blockless",
15                 "first-nested"
16             ],
17             "ignore": ["after-comment"],
18             "ignoreAtRules": ["else"]
19         }]
20     }