Skip to content

Commit

Permalink
fix: Improve stylelint config to accept Sass at-rules
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilzyla committed Jun 8, 2022
1 parent 95b7260 commit c50926b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inst/templates/node/dot.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"plugins": ["stylelint-scss"],
"rules": {
"no-empty-source": null
"at-rule-no-unknown": null,
"no-empty-source": null,
"scss/at-rule-no-unknown": true
}
}

0 comments on commit c50926b

Please sign in to comment.