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.
This commit is contained in:
Denys Vuika
2026-02-26 12:58:42 +00:00
parent 86524ed15c
commit 3fb2d6e5dc
+2 -4
View File
@@ -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",