From 9c67ab1de11025d233a48687b3451755c6d912d8 Mon Sep 17 00:00:00 2001 From: Vitaly Date: Sun, 21 Jan 2024 22:40:16 +0530 Subject: [PATCH] [skip ci] add formatting --- .vscode/settings.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 43704b6a..3510559d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,20 @@ { - "tsEssentialPlugins.enableHooksFile": true + "tsEssentialPlugins.enableHooksFile": true, + "javascript.format.insertSpaceAfterConstructor": true, + "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true, + "javascript.format.insertSpaceBeforeFunctionParenthesis": true, + "javascript.preferences.quoteStyle": "single", + "typescript.format.semicolons": "remove", + "typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true, + "typescript.format.insertSpaceBeforeFunctionParenthesis": true, + "[javascript][typescript]": { + "editor.defaultFormatter": "standard.vscode-standard" + }, + "[typescript]": { + "editor.defaultFormatter": "vscode.typescript-language-features", + "editor.tabSize": 2 + }, + "cSpell.words": [ + "serv" + ] }