Skip to content

Commit d3b151e

Browse files
authored
Upgrade dependencies (#479)
Migrate to latest versions of Next.js, React, Radix, etc.
1 parent 19c009f commit d3b151e

File tree

23 files changed

+3867
-2772
lines changed

23 files changed

+3867
-2772
lines changed

eslint.config.mjs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import nextVitals from 'eslint-config-next/core-web-vitals'
2+
import { defineConfig, globalIgnores } from 'eslint/config'
3+
4+
const eslintConfig = defineConfig([
5+
...nextVitals,
6+
// Override default ignores of eslint-config-next.
7+
globalIgnores([
8+
// Default ignores of eslint-config-next:
9+
'.next/**',
10+
'out/**',
11+
'build/**',
12+
'next-env.d.ts',
13+
]),
14+
{
15+
rules: {
16+
'react-hooks/set-state-in-effect': 'off',
17+
},
18+
},
19+
])
20+
21+
export default eslintConfig

0 commit comments

Comments
 (0)