Skip to content

Commit ff2ab4f

Browse files
fix(eslint): remove parser from eslint plugin
The parser is not necessary in a plugin, since users should use a valid ESLint config which already contains the parser. Source: typescript-eslint/typescript-eslint#9814 (comment)
1 parent 3f64e25 commit ff2ab4f

File tree

1 file changed

+0
-2
lines changed
  • packages/eslint-plugin/src/lib/configs

1 file changed

+0
-2
lines changed

packages/eslint-plugin/src/lib/configs/all.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import rules from '../rules';
2-
import { parser } from 'typescript-eslint';
32
import type { TSESLint } from '@typescript-eslint/utils';
43

54
export const all: TSESLint.FlatConfig.Config = {
65
languageOptions: {
7-
parser,
86
sourceType: 'module',
97
},
108
plugins: {

0 commit comments

Comments
 (0)