Skip to content

Commit ba9b0f8

Browse files
committed
Fix root eslint.config.mts file
1 parent 85ea486 commit ba9b0f8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

eslint.config.mts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
1-
/**
2-
* @import { Linter } from 'eslint'
3-
*/
4-
51
import js from '@eslint/js'
2+
import { Linter } from 'eslint'
63
import prettierConfig from 'eslint-config-prettier'
74

8-
/**
9-
* @satisfies {Linter.Config[]}
10-
*/
115
const ESLintConfig = [
126
{ name: 'ignores', ignores: ['**/'] },
137
{ name: 'javascript', ...js.configs.recommended },
148
{ name: 'prettier-config', ...prettierConfig },
15-
]
9+
] satisfies Linter.Config[]
1610

1711
export default ESLintConfig

0 commit comments

Comments
 (0)