Skip to content

Commit

Permalink
refactor: use TSESLint.FlatConfig.Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Nov 9, 2024
1 parent 2f69641 commit d1ca57c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
declare module 'eslint-plugin-eslint-comments' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-eslint-comments_bottom' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-n' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-n_bottom' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-import' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-import_bottom' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-promise' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint-plugin-promise_bottom' {
import type { TSESLint } from '@typescript-eslint/utils'
const plugin: TSESLint.Linter.Plugin
const plugin: TSESLint.FlatConfig.Plugin
export default plugin
}
declare module 'eslint_bottom' {
Expand Down

0 comments on commit d1ca57c

Please sign in to comment.