( config: readonly Linter.Config<R>[], )
| 7 | export type ESConfig = Linter.Config<ESLintRules>; |
| 8 | |
| 9 | export const defineConfig = <R extends Linter.RulesRecord>( |
| 10 | config: readonly Linter.Config<R>[], |
| 11 | ): readonly Linter.Config<R>[] => config; |
| 12 | |
| 13 | /** Version of findUp that only considers the git repository and searches for `.gitignore`. */ |
| 14 | export const projectIgnoreFiles = (directory: string): string[] => { |
no outgoing calls
no test coverage detected