2018-12-20 15:12:51 -05:00
|
|
|
{
|
2019-01-24 14:00:52 -05:00
|
|
|
"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",
|
2018-12-20 15:12:51 -05:00
|
|
|
"files.watcherExclude": {
|
|
|
|
"**/.git/objects/**": true,
|
|
|
|
"**/.git/subtree-cache/**": true,
|
|
|
|
"**/node_modules/**": true,
|
|
|
|
"**/bazel-out/**": true,
|
|
|
|
"**/dist/**": true,
|
|
|
|
},
|
|
|
|
"search.exclude": {
|
|
|
|
"**/node_modules": true,
|
|
|
|
"**/bower_components": true,
|
|
|
|
"**/bazel-out": true,
|
|
|
|
"**/dist": true,
|
|
|
|
},
|
|
|
|
}
|