chore: add git blame ignore-revs support to gitlens for vscode configuration (#65762)

To help improve the developer experience for framework authors, this
enables the git blame ignore option to ignore some code changes that
were added to the project .git-blame-ignore-revs file.
This commit is contained in:
Wyatt Johnson 2024-05-14 14:18:10 -07:00 committed by GitHub
parent 96df8eacc1
commit 2fb5ad797f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View file

@ -7,3 +7,6 @@
# chore: update prettier to 3.2.5 (#65092) # chore: update prettier to 3.2.5 (#65092)
64b718c6618b6c419872abbf22163ae543ac259e 64b718c6618b6c419872abbf22163ae543ac259e
# Replace createNextDescribe with nextTestSetup
c6320ed87ab41eee6f3ac54352ad02a239f329b2

View file

@ -77,5 +77,9 @@
"scheme": "file" "scheme": "file"
} }
], ],
"typescript.tsdk": "node_modules/typescript/lib" "typescript.tsdk": "node_modules/typescript/lib",
"gitlens.advanced.blame.customArguments": [
"--ignore-revs-file",
"${workspaceRoot}/.git-blame-ignore-revs"
]
} }