From a7443ffebf46eed9b8b1876ca08e51a9b77a7071 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Mon, 30 Oct 2023 11:06:19 +0100 Subject: [PATCH] stylelint: handle stylelint-scss deprecation stylelint-sccs deprecated at-import-partial-leading-underscore in a minor version update while stylelint-config-recommended-scss still enables it causing an error when running stylelint. --- .stylelintrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 352fbe6..aa78cdb 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -26,6 +26,8 @@ "no-duplicate-selectors": null, "scss/at-extend-no-missing-placeholder": null, "scss/at-import-partial-extension": null, + "scss/at-import-no-partial-leading-underscore": null, + "scss/load-no-partial-leading-underscore": true, "scss/at-mixin-pattern": null, "scss/comment-no-empty": null, "scss/dollar-variable-pattern": null,