chore: Ignore bazel in search and quick-open vscode (#59011)

This commit is contained in:
Dax McDonald 2023-12-14 12:09:57 -07:00 committed by GitHub
parent 1479042333
commit 1e8f3c09ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,8 @@
"**/.cache": true,
"**/.nyc_output": true,
"doc/_resources/assets": true,
"**/.eslintcache": true
"**/.eslintcache": true,
"bazel*/**": true
},
"files.exclude": {
"**/*.scss.d.ts": true
@ -49,7 +50,9 @@
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"editor.codeActionsOnSave": {},
"eslint.codeActionsOnSave.mode": "problems",
"eslint.options": { "cache": true },
"eslint.options": {
"cache": true
},
"eslint.workingDirectories": ["./dev/release", "./client/*"],
"go.lintTool": "golangci-lint",
"shellformat.flag": "-i 2 -ci",