@datadayrepos/eslint-define-config
Version:
Provide a defineConfig function for .eslintrc.js files
24 lines (22 loc) • 397 B
TypeScript
import type { LiteralUnion } from '../utility-types';
/** Plugin. */
export type Plugin = LiteralUnion<
| '@graphql-eslint'
| '@typescript-eslint'
| 'deprecation'
| 'import'
| 'inclusive-language'
| 'jsdoc'
| 'jsx-a11y'
| 'mdx'
| 'prettier'
| 'promise'
| 'react-hooks'
| 'react'
| 'sonarjs'
| 'spellcheck'
| 'testing-library'
| 'unicorn'
| 'vitest'
| 'vue'
>;