提交 f655efaa 编写于 作者: P pkoushik

fix #59364 - Review #2 - build failure fixed

上级 c4928076
......@@ -66,7 +66,7 @@ export interface IFolderQuery<U extends UriComponents=uri> {
includePattern?: glob.IExpression;
fileEncoding?: string;
disregardIgnoreFiles?: boolean;
disregardGlobalIgnoreFiles: boolean;
disregardGlobalIgnoreFiles?: boolean;
}
export interface ICommonQueryOptions<U> {
......
......@@ -302,7 +302,7 @@ declare module 'vscode' {
* Whether global files that exclude files, like .gitignore, should be respected.
* See the vscode setting `"search.useGlobalIgnoreFiles"`.
*/
useGlobalIgnoreFiles: boolean;
useGlobalIgnoreFiles?: boolean;
/**
* Whether symlinks should be followed while searching.
......
......@@ -99,7 +99,7 @@ suite('QueryBuilder', () => {
}
}
}],
type: QueryType.TextuseIgnoreFiles
type: QueryType.Text
});
});
......
......@@ -17,7 +17,7 @@ export interface IFolderSearch {
includePattern?: IExpression;
fileEncoding?: string;
disregardIgnoreFiles?: boolean;
disregardGlobalIgnoreFiles: boolean;
disregardGlobalIgnoreFiles?: boolean;
}
export interface IRawSearch {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册