{
    "extends": "stylelint-config-recommended",
    "plugins": [
        "@stylistic/stylelint-plugin"
    ],
    "ignoreFiles": [
        "ext/lib/**/*.css"
    ],
    "rules": {
        "at-rule-empty-line-before": null,
        "block-no-empty": true,
        "color-hex-length": null,
        "color-named": "never",
        "custom-property-empty-line-before": null,
        "declaration-no-important": true,
        "font-family-name-quotes": "always-where-recommended",
        "font-weight-notation": "named-where-possible",
        "function-calc-no-unspaced-operator": true,
        "function-name-case": "lower",
        "length-zero-no-unit": null,
        "no-descending-specificity": null,
        "no-duplicate-selectors": null,
        "no-invalid-double-slash-comments": true,
        "rule-empty-line-before": null,
        "selector-type-no-unknown": null,
        "selector-pseudo-element-colon-notation": "double",
        "string-no-newline": true,
        "unit-no-unknown": true,
        "value-keyword-case": [
            "lower",
            {
                "camelCaseSvgKeywords": true
            }
        ],

        "@stylistic/block-opening-brace-space-after": "always-single-line",
        "@stylistic/block-opening-brace-space-before": [
            "always",
            {
                "ignoreSelectors": "/^\\.icon/"
            }
        ],
        "@stylistic/color-hex-case": "lower",
        "@stylistic/declaration-colon-space-after": "always-single-line",
        "@stylistic/declaration-colon-space-before": "never",
        "@stylistic/function-comma-space-after": "always",
        "@stylistic/function-comma-space-before": "never",
        "@stylistic/function-parentheses-space-inside": "never",
        "@stylistic/function-whitespace-after": "always",
        "@stylistic/indentation": 4,
        "@stylistic/max-empty-lines": 2,
        "@stylistic/no-extra-semicolons": true,
        "@stylistic/number-leading-zero": "always",
        "@stylistic/number-no-trailing-zeros": true,
        "@stylistic/property-case": "lower",
        "@stylistic/selector-combinator-space-after": "never",
        "@stylistic/selector-combinator-space-before": "never",
        "@stylistic/selector-list-comma-newline-after": "always-multi-line",
        "@stylistic/string-quotes": "single",
        "@stylistic/unit-case": "lower"
    }
}