mirror of
https://github.com/dyzulk/trustlab.git
synced 2026-01-25 21:18:44 +07:00
19 lines
356 B
JavaScript
19 lines
356 B
JavaScript
// eslint.config.mjs
|
|
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
import nextConfig from 'eslint-config-next/core-web-vitals'
|
|
|
|
export default defineConfig([
|
|
...nextConfig,
|
|
globalIgnores([
|
|
'.next/**',
|
|
'out/**',
|
|
'build/**',
|
|
'next-env.d.ts'
|
|
]),
|
|
{
|
|
rules: {
|
|
'react-hooks/set-state-in-effect': 'off'
|
|
}
|
|
}
|
|
])
|