From 4e09b0d7396f58a78ad84ae040124639d4131336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maria=20Jos=C3=A9=20Solano?= Date: Tue, 29 Oct 2024 20:47:41 -0700 Subject: [PATCH] Disable import-notation rule --- sass.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sass.js b/sass.js index 28fcc0c..1aab0dd 100644 --- a/sass.js +++ b/sass.js @@ -26,6 +26,9 @@ module.exports = { "content", "each", "else", "error", "extend", "for", "function", "if", "include", "mixin", "return", "use", ], }], + // 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,