Skip to content

Commit 280932d

Browse files
committed
Implements Copilot's feedback
1 parent 8cd1aa1 commit 280932d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

eslint.config.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import { defineConfig } from "eslint/config"
21
import js from "@eslint/js"
32
import nextCoreWebVitals from "eslint-config-next/core-web-vitals"
43
import tseslint from "typescript-eslint"
54

6-
export default defineConfig([
5+
const config = [
76
...nextCoreWebVitals,
87
js.configs.recommended,
98
...tseslint.configs.recommended,
@@ -27,4 +26,6 @@ export default defineConfig([
2726
}],
2827
},
2928
}
30-
])
29+
]
30+
31+
export default config

0 commit comments

Comments
 (0)