mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-07 17:25:50 -05:00
Adds .gitignore checks to reduce blame calls
Caches failed blames to reduce blame calls Only clear failed blames from cache on change/save Add better error messages and handling
This commit is contained in:
10
typings/ignore.d.ts
vendored
Normal file
10
typings/ignore.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
declare module "ignore" {
|
||||
namespace ignore {
|
||||
interface Ignore {
|
||||
add(patterns: string | Array<string> | Ignore): Ignore;
|
||||
filter(paths: Array<string>): Array<string>;
|
||||
}
|
||||
}
|
||||
function ignore(): ignore.Ignore;
|
||||
export = ignore;
|
||||
}
|
||||
Reference in New Issue
Block a user