focalboard/webapp/.stylelintrc.json
Paul Esch-Laurent 364be89424
Refactor z-index values to a SCSS map (#3332)
* refactor: move all `z-index` values to a SCSS map

* style: add newline

* chore: disallow `z-index` directly in stylelint
2022-07-11 17:27:03 +05:30

15 lines
422 B
JSON

{
"extends": "stylelint-config-sass-guidelines",
"rules": {
"indentation": 4,
"selector-class-pattern": "[a-zA-Z_-]+",
"max-nesting-depth": 4,
"selector-max-compound-selectors": 6,
"selector-max-id": 1,
"selector-no-qualifying-type": null,
"order/properties-alphabetical-order": null,
"declaration-block-no-duplicate-properties": true,
"property-disallowed-list": ["z-index"]
}
}