Skip to content

Commit

Permalink
chore: Upgrade stylelint.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubnowicki committed Oct 31, 2023
1 parent 52e008f commit f68e880
Show file tree
Hide file tree
Showing 4 changed files with 780 additions and 1,644 deletions.
11 changes: 8 additions & 3 deletions inst/templates/node/dot.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "stylelint-config-standard",
"plugins": ["stylelint-scss"],
"extends": "stylelint-config-standard-scss",
"rules": {
"at-rule-no-unknown": null,
"no-empty-source": null,
"scss/at-rule-no-unknown": true
"scss/at-rule-no-unknown": true,
"selector-id-pattern": [
"^([a-z][a-z0-9]*)([-_][a-z0-9]+)*$",
{
"message": "Expected custom property name to be kebab-case or snake-case"
}
]
}
}
Loading

0 comments on commit f68e880

Please sign in to comment.