format: prettify entire project
This commit is contained in:
28
node_modules/ignore/index.d.ts
generated
vendored
28
node_modules/ignore/index.d.ts
generated
vendored
@ -1,8 +1,8 @@
|
||||
type Pathname = string
|
||||
type Pathname = string;
|
||||
|
||||
interface TestResult {
|
||||
ignored: boolean
|
||||
unignored: boolean
|
||||
ignored: boolean;
|
||||
unignored: boolean;
|
||||
}
|
||||
|
||||
export interface Ignore {
|
||||
@ -11,7 +11,7 @@ export interface Ignore {
|
||||
* @param {string[]} patterns
|
||||
* @returns IgnoreBase
|
||||
*/
|
||||
add(patterns: string | Ignore | readonly (string | Ignore)[]): this
|
||||
add(patterns: string | Ignore | readonly (string | Ignore)[]): this;
|
||||
|
||||
/**
|
||||
* Filters the given array of pathnames, and returns the filtered array.
|
||||
@ -19,43 +19,43 @@ export interface Ignore {
|
||||
* @param paths the array of paths to be filtered.
|
||||
* @returns The filtered array of paths
|
||||
*/
|
||||
filter(pathnames: readonly Pathname[]): Pathname[]
|
||||
filter(pathnames: readonly Pathname[]): Pathname[];
|
||||
|
||||
/**
|
||||
* Creates a filter function which could filter
|
||||
* an array of paths with Array.prototype.filter.
|
||||
*/
|
||||
createFilter(): (pathname: Pathname) => boolean
|
||||
createFilter(): (pathname: Pathname) => boolean;
|
||||
|
||||
/**
|
||||
* Returns Boolean whether pathname should be ignored.
|
||||
* @param {string} pathname a path to check
|
||||
* @returns boolean
|
||||
*/
|
||||
ignores(pathname: Pathname): boolean
|
||||
ignores(pathname: Pathname): boolean;
|
||||
|
||||
/**
|
||||
* Returns whether pathname should be ignored or unignored
|
||||
* @param {string} pathname a path to check
|
||||
* @returns TestResult
|
||||
*/
|
||||
test(pathname: Pathname): TestResult
|
||||
test(pathname: Pathname): TestResult;
|
||||
}
|
||||
|
||||
export interface Options {
|
||||
ignorecase?: boolean
|
||||
ignorecase?: boolean;
|
||||
// For compatibility
|
||||
ignoreCase?: boolean
|
||||
allowRelativePaths?: boolean
|
||||
ignoreCase?: boolean;
|
||||
allowRelativePaths?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates new ignore manager.
|
||||
*/
|
||||
declare function ignore(options?: Options): Ignore
|
||||
declare function ignore(options?: Options): Ignore;
|
||||
|
||||
declare namespace ignore {
|
||||
export function isPathValid (pathname: string): boolean
|
||||
export function isPathValid(pathname: string): boolean;
|
||||
}
|
||||
|
||||
export default ignore
|
||||
export default ignore;
|
||||
|
Reference in New Issue
Block a user