From c82fa7f7695bd6b4f257ec3f60476c1f344d3d51 Mon Sep 17 00:00:00 2001 From: jw397 Date: Tue, 10 Sep 2024 15:31:39 +0800 Subject: [PATCH] style: lint --- index.d.ts | 1 - index.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index 3581323..e765413 100644 --- a/index.d.ts +++ b/index.d.ts @@ -206,7 +206,6 @@ export function isGitIgnoredSync(options?: GitignoreOptions): GlobbyFilterFuncti export function convertPathToPattern(source: string): FastGlob.Pattern; - /** * Check if a path is ignored by the ignore files. * @param patterns - See the supported [glob patterns](https://github.com/sindresorhus/globby#globbing-patterns). diff --git a/index.js b/index.js index 26e3b97..d75b41b 100644 --- a/index.js +++ b/index.js @@ -260,7 +260,7 @@ export { isGitIgnored, isGitIgnoredSync, isIgnoredByIgnoreFiles, - isIgnoredByIgnoreFilesSync + isIgnoredByIgnoreFilesSync, } from './ignore.js'; export const {convertPathToPattern} = fastGlob;