Skip to content

Commit

Permalink
refactor: Handle ignore rules better
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Apr 13, 2022
1 parent a2fe65e commit be13eed
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions buildchain/.stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@
"stylelint-config-recommended-vue"
],
"rules": {
"at-rule-no-unknown": [ true, {
"ignoreAtRules": [
"apply",
"extends",
"screen",
"responsive",
"tailwind"
]
}],
"max-line-length": null,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"screen",
"extends",
"responsive",
"tailwind"
]
}
],
"block-no-empty": null
}
}

0 comments on commit be13eed

Please sign in to comment.