{
    "plugins": [
        "stylelint-scss"
    ],
    "extends": [
        "stylelint-config-standard",
        "stylelint-config-sass-guidelines"
    ],
    "rules": {
        "indentation": 4,
        "selector-pseudo-element-colon-notation": "single",
        "max-nesting-depth": 2,
        "selector-class-pattern": "^[a-z\\-\\d_]+$",
        "selector-combinator-disallowed-list": [">", "+", "~", "*"],
        "selector-max-universal": 0,
        "selector-pseudo-class-disallowed-list": ["not"]
    }
}
