From 3fb2d6e5dc5c88d050b243dc7b5f9e509e43f2fe Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 26 Feb 2026 12:58:42 +0000 Subject: [PATCH] refactor: update stylelint configuration in VSCode settings for improved path resolution - Changed the stylelint.configFile path to use the workspace folder variable for better compatibility across different environments. - Added stylelint.configBasedir to ensure correct base directory resolution for stylelint configuration. --- .vscode/settings.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 3d46574011..d0f9a191fb 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -20,10 +20,8 @@ "stylelint.enable": true, "css.validate": false, "scss.validate": false, - "stylelint.config": { - "extends": "./.stylelintrc.json" - }, - "stylelint.configFile": ".stylelintrc.json", + "stylelint.configFile": "${workspaceFolder}/.stylelintrc.json", + "stylelint.configBasedir": "${workspaceFolder}", "stylelint.validate": [ "css", "less",