We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
eslint.config.mts
1 parent 507d803 commit 7447a38Copy full SHA for 7447a38
eslint.config.mts
@@ -1,17 +1,11 @@
1
-/**
2
- * @import { Linter } from 'eslint'
3
- */
4
-
5
import js from '@eslint/js'
+import { Linter } from 'eslint'
6
import prettierConfig from 'eslint-config-prettier'
7
8
9
- * @satisfies {Linter.Config[]}
10
11
const ESLintConfig = [
12
{ name: 'ignores', ignores: ['**/'] },
13
{ name: 'javascript', ...js.configs.recommended },
14
{ name: 'prettier-config', ...prettierConfig },
15
-]
+] satisfies Linter.Config[]
16
17
export default ESLintConfig
0 commit comments