{
    "extends": [
        "stylelint-config-idiomatic-order",
        "stylelint-config-standard",
        "stylelint-prettier/recommended"
    ],
    "rules": {
        "order/properties-alphabetical-order": null,
        "declaration-property-value-no-unknown": true,
        "alpha-value-notation": "number",<% if (camelCase) {%>
        "selector-class-pattern": [
            "^[a-z][a-z0-9A-Z]+$",
            {
                "message": "Selector should be written in camel-case (selector-class-pattern)"
            }
        ],<% } %>
        "max-nesting-depth": [4, { "ignoreAtRules": ["each", "media", "supports", "include"] }],
        "import-notation": ["string", "url"]
    }
}
