From f2f477649ed6e5087963200efb81d2250c5014bc Mon Sep 17 00:00:00 2001 From: Danshil Kokil Mungur Date: Sun, 21 Mar 2021 08:42:19 +0400 Subject: [PATCH] style: use vscode's 'organize imports' (#1242) [skip ci] This will instruct VS Code to organize imports when saving a file. --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 459f6354..ed238007 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,5 +14,8 @@ "name": "Local SQLite", "database": "./config/db/db.sqlite3" } - ] + ], + "editor.codeActionsOnSave": { + "source.organizeImports": true + } }