bms-repository/packages/admin/.stylelintrc.json
pfych 0029086b3f
Some checks failed
Build & Lint / build-lint (push) Failing after 2m10s
Deploy / setup (push) Failing after 1m3s
Init
2024-10-12 14:08:09 +11:00

21 lines
693 B
JSON

{
"extends": [
"stylelint-config-sass-guidelines",
"stylelint-config-css-modules"
],
"plugins": ["stylelint-order"],
"configBaseDir": "./",
"customSyntax": "postcss-scss",
"rules": {
"order/properties-alphabetical-order": null,
"max-nesting-depth": null,
"selector-no-qualifying-type": null,
"selector-class-pattern": "(^[a-z]+([A-Z]|-)+\\w+$)+|(^([a-z]|-)+\\w+$)",
"scss/at-mixin-pattern": "(^[a-z]+([A-Z]|-)+\\w+$)+|(^([a-z]|-)+\\w+$)",
"scss/dollar-variable-pattern": "(^[a-z]+([A-Z]|-)+\\w+$)+|(^([a-z]|-)+\\w+$)",
"selector-max-compound-selectors": 8,
"scss/at-extend-no-missing-placeholder": null,
"at-rule-no-unknown": null
}
}