Skip to content

Commit

Permalink
5462: Add stylelint and prettier packages
Browse files Browse the repository at this point in the history
  • Loading branch information
yepzdk committed Jun 29, 2022
1 parent ad31ef2 commit 382f972
Show file tree
Hide file tree
Showing 3 changed files with 3,176 additions and 79 deletions.
18 changes: 10 additions & 8 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{
"extends": [
"@reloaddk/stylelint-recommended-scss"
"stylelint-config-standard",
"stylelint-config-sass-guidelines",
"stylelint-config-prettier"
],
"rules": {
"max-nesting-depth": 3,
"order/order": null,
"order/properties-order": null,
"order/properties-alphabetical-order": null,
"selector-class-pattern": "^[a-z][a-z0-9_-]*$",
"selector-max-id": null,
"selector-no-qualifying-type": [
true,
{
"ignore": [
"attribute",
"class",
"id"
]
"ignore": ["attribute", "class", "id"]
}
],
"selector-class-pattern": null,
"property-no-vendor-prefix": null,
"scss/dollar-variable-pattern": null
}
}
}
Loading

0 comments on commit 382f972

Please sign in to comment.