Translated using Weblate (Russian)
[phpmyadmin.git] / .stylelintrc.json
blob709780a49e0e380573f0e56dc65402bace832e3a
2     "extends": [
3         "stylelint-config-standard",
4         "stylelint-config-recommended-scss"
5     ],
6     "rules": {
7         "selector-class-pattern": null,
8         "import-notation": null,
9         "selector-attribute-quotes": null,
10         "shorthand-property-no-redundant-values": null,
11         "function-url-quotes": null,
12         "selector-id-pattern": null,
13         "alpha-value-notation": null,
14         "color-function-notation": null,
15         "scss/no-global-function-names": null,
16         "scss/function-quote-no-quoted-strings-inside": null,
17         "property-no-vendor-prefix": null,
18         "declaration-block-no-redundant-longhand-properties": null,
19         "no-descending-specificity": null,
20         "no-duplicate-selectors": null,
21         "at-rule-empty-line-before": ["always", {
22             "except": [
23                 "blockless-after-same-name-blockless",
24                 "first-nested"
25             ],
26             "ignore": ["after-comment"],
27             "ignoreAtRules": ["else"]
28         }],
29         "value-keyword-case": [
30             "lower",
31             {
32                 "ignoreProperties": [
33                     "$font-family-monospace"
34                 ]
35             }
36         ]
37     }