Revision 470738c8f775145630a07be783e50dac5d2194e5 authored by Jessica Janiuk on 14 December 2022, 19:05:36 UTC, committed by Jessica Janiuk on 14 December 2022, 19:11:28 UTC
1 parent a2cb2b4
Raw File
recommended-settings.json
{
  // Format js and ts files on save with `clang-format.executable`
  // If `clang-format.executable` is not being used, these two settings should be removed otherwise it will break existing formatting.
  // You can instead run `yarn gulp format` to manually format your code.
  "[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",
  // Exclude third party modules and build artifacts from the editor watchers/searches.
  "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,
    ".history": true,
  },
  "git.ignoreLimitWarning": true,
}
back to top