Upgrade to ESLint 9
This commit is contained in:
32
src/modules.d.ts
vendored
32
src/modules.d.ts
vendored
@ -1,25 +1,4 @@
|
||||
declare module '@typescript-eslint/utils' {
|
||||
export * from '@typescript-eslint/utils/dist/index';
|
||||
}
|
||||
declare module '@typescript-eslint/typescript-estree' {
|
||||
export * from '@typescript-eslint/typescript-estree/dist/index';
|
||||
}
|
||||
declare module '@typescript-eslint/type-utils' {
|
||||
export * from '@typescript-eslint/type-utils/dist/index';
|
||||
}
|
||||
declare module '@typescript-eslint/utils/eslint-utils' {
|
||||
export * from '@typescript-eslint/utils/dist/eslint-utils';
|
||||
}
|
||||
declare module '@typescript-eslint/utils/json-schema' {
|
||||
export * from '@typescript-eslint/utils/dist/json-schema';
|
||||
}
|
||||
declare module '@typescript-eslint/scope-manager' {
|
||||
export * from '@typescript-eslint/scope-manager/dist/index';
|
||||
}
|
||||
declare module '@typescript-eslint/types' {
|
||||
export * from '@typescript-eslint/types/dist/index';
|
||||
}
|
||||
|
||||
// eslint-disable-next-line import-x/unambiguous
|
||||
declare module 'module' {
|
||||
export function _resolveFilename(
|
||||
request: string,
|
||||
@ -34,3 +13,12 @@ declare module 'module' {
|
||||
options?: Record<PropertyKey, unknown>,
|
||||
): string;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-storybook' {
|
||||
import type { Linter } from 'eslint';
|
||||
|
||||
export const configs: {
|
||||
csf: Linter.Config;
|
||||
recommended: Linter.Config;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user