diff --git a/.vscode/settings.json b/.vscode/settings.json index 3fd1d447d0..b51f0348c6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,12 @@ { + "[javascript]": { + "editor.formatOnSave": true, + }, + "[typescript]": { + "editor.formatOnSave": true, + }, + // Please install http://clang.llvm.org/docs/ClangFormat.html in VSCode to take advantage of clang-format + "clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format", "files.watcherExclude": { "**/.git/objects/**": true, "**/.git/subtree-cache/**": true, @@ -12,4 +20,5 @@ "**/bazel-out": true, "**/dist": true, }, -} \ No newline at end of file + "git.ignoreLimitWarning": true, +}