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.
1 parent 8cd1aa1 commit 280932dCopy full SHA for 280932d
eslint.config.mjs
@@ -1,9 +1,8 @@
1
-import { defineConfig } from "eslint/config"
2
import js from "@eslint/js"
3
import nextCoreWebVitals from "eslint-config-next/core-web-vitals"
4
import tseslint from "typescript-eslint"
5
6
-export default defineConfig([
+const config = [
7
...nextCoreWebVitals,
8
js.configs.recommended,
9
...tseslint.configs.recommended,
@@ -27,4 +26,6 @@ export default defineConfig([
27
26
}],
28
},
29
}
30
-])
+]
+
31
+export default config
0 commit comments