diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 65ecf95..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": ["next/core-web-vitals", "next/typescript"], - "ignorePatterns": [ - ".next", - "out", - "build", - "next-env.d.ts", - "src/app/test-api/**" - ] -} diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..9067198 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,14 @@ +import next from 'eslint-config-next'; + +export default [ + { + ignores: [ + '.next', + 'out', + 'build', + 'next-env.d.ts', + 'src/app/test-api/**', + ], + }, + ...next, +];