mirror of
https://github.com/Drop-OSS/drop-website.git
synced 2026-01-30 20:55:25 +01:00
23 lines
485 B
JavaScript
23 lines
485 B
JavaScript
import { FlatCompat } from '@eslint/eslintrc'
|
|
import { dirname } from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
const __filename = fileURLToPath(import.meta.url)
|
|
const __dirname = dirname(__filename)
|
|
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
})
|
|
|
|
const eslintConfig = [
|
|
...compat.extends('next/core-web-vitals', 'next/typescript'),
|
|
{
|
|
rules: {
|
|
'@next/next/no-img-element': 'off',
|
|
'prefer-const': 'off',
|
|
},
|
|
},
|
|
]
|
|
|
|
export default eslintConfig
|