From ab32db89fc216f586d67220bff0da470352c9c29 Mon Sep 17 00:00:00 2001 From: Patrick Fleming Date: Fri, 27 Sep 2024 09:54:22 +0100 Subject: [PATCH] Update stylelint config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …with updated plugins. I have also specified that we will use string import notation, as url notation was causing errors. --- .stylelintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index daae1b94..36d130c8 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,3 +1,4 @@ { - "extends": ["stylelint-config-standard-scss", "stylelint-config-prettier"] + "extends": ["stylelint-config-standard-scss", "stylelint-config-standard"], + "rules": { "import-notation": "string" } }