diff --git a/sass.js b/sass.js index 1e216b9..26f521c 100644 --- a/sass.js +++ b/sass.js @@ -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,