stylelintrc.json
549 Bytes
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 2,
"max-nesting-depth": 4,
"selector-pseudo-element-colon-notation": "single",
"selector-class-pattern": "^[a-z0-9-]+$",
"selector-id-pattern": "^[a-z0-9-]+$",
"unit-case": null,
"function-whitespace-after": null,
"no-descending-specificity": null,
"at-rule-no-unknown": null,
"string-quotes": "double",
"unit-no-unknown": [true, {
"ignoreUnits": ["PX"]
}]
}
}