Skip to content

Commit

Permalink
Disable import-notation rule
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaSolOs committed Oct 30, 2024
1 parent e8e763e commit 03dbeaf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ module.exports = {
// allow @else to come on same line as closing @if brace
ignoreAtRules: ["else", "if"],
}],
// We don't want stylelint to flag `@import "mixins"` since that's not equivalent
// to `@import url("mixins")` in Sass.
"import-notation": null,
"scss/at-extend-no-missing-placeholder": true,
"scss/at-function-pattern": namingPattern,
"scss/at-import-no-partial-leading-underscore": true,
Expand Down

0 comments on commit 03dbeaf

Please sign in to comment.