root: Enables organize imports on save

Configures the IDE to automatically organize imports upon saving files.

This enhances code cleanliness and consistency by ensuring imports are
automatically sorted and unnecessary imports are removed.
This commit is contained in:
Carlos Santos 2025-12-04 16:28:24 +01:00
parent 07b22a0d29
commit c51a5173dd

View File

@ -30,6 +30,10 @@
}
],
"settings": {
"editor.codeActionsOnSave": {
"source.organizeImports": "always",
"source.removeUnusedImports": "always",
},
"files.exclude": {
"**/meet-ce": true,
"**/meet-pro": true,