mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
32c6d5313a
This reverts commit efcd6af17d.
Engineers on the team thought that the red color means something is
broken.
See slack discussion in #general
PR Close #29419
28 lines
853 B
JSON
28 lines
853 B
JSON
{
|
|
"[javascript]": {
|
|
"editor.formatOnSave": true,
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": true,
|
|
},
|
|
// Please install https://marketplace.visualstudio.com/items?itemName=xaver.clang-format to take advantage of `clang-format` in VSCode.
|
|
// (See https://clang.llvm.org/docs/ClangFormat.html for more info `clang-format`.)
|
|
"clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format",
|
|
"files.watcherExclude": {
|
|
"**/.git/objects/**": true,
|
|
"**/.git/subtree-cache/**": true,
|
|
"**/node_modules/**": true,
|
|
"**/bazel-out/**": true,
|
|
"**/dist/**": true,
|
|
"**/aio/src/generated/**": true,
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/bazel-out": true,
|
|
"**/dist": true,
|
|
"**/aio/src/generated": true,
|
|
},
|
|
"git.ignoreLimitWarning": true,
|
|
}
|