Skip to content

Commit

Permalink
refactor: adapted stylelint rules from DB UI Core (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Nov 15, 2022
1 parent 23fe999 commit 84943f6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
{
"extends": ["stylelint-config-sass-guidelines", "stylelint-config-prettier"]
"extends": [
"stylelint-config-sass-guidelines",
"stylelint-config-prettier"
],
"rules": {
"selector-no-qualifying-type": null,
"selector-class-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/selector-no-redundant-nesting-selector": null,
"max-nesting-depth": null,
"selector-max-compound-selectors": null,
"scss/at-extend-no-missing-placeholder": null,
"declaration-property-value-disallowed-list": null,
"scss/percent-placeholder-pattern": null,
"scss/at-mixin-pattern": null,
"order/properties-alphabetical-order": null
}
}

0 comments on commit 84943f6

Please sign in to comment.