mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
import {defineConfig, globalIgnores} from 'eslint/config'
|
|
import nextVitals from 'eslint-config-next/core-web-vitals'
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
globalIgnores([
|
|
'.next/**',
|
|
'out/**',
|
|
'build/**',
|
|
'next-env.d.ts',
|
|
]),
|
|
])
|
|
|
|
export default eslintConfig |