mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This allows for setting git and vscode gitlens to ignore specific commit hashes for bulk changes. PR Close #60117
27 lines
682 B
JSON
27 lines
682 B
JSON
{
|
|
"[javascript]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
// 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
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/bazel-out": true,
|
|
"**/dist": true,
|
|
".history": true
|
|
},
|
|
"git.ignoreLimitWarning": true,
|
|
"gitlens.advanced.blame.customArguments": [
|
|
"--ignore-revs-file .git-blame-ignore-revs"
|
|
]
|
|
}
|