Added "auto fix imports" to settings.json.

This commit is contained in:
Eric Traut 2023-04-18 20:35:27 -07:00
parent b3f6f4f683
commit c059711256

View File

@ -8,7 +8,8 @@
"editor.formatOnSave": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": true,
"source.organizeImports": true
},
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
}