Skip to content

Commit

Permalink
Merge pull request #289 from Appsilon/improve-stylelint
Browse files Browse the repository at this point in the history
Improve stylelint config to accept Sass at-rules
  • Loading branch information
kamilzyla authored Jun 14, 2022
2 parents 95b7260 + c50926b commit dc5b336
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 dc5b336

Please sign in to comment.