33 lines
948 B
JavaScript
33 lines
948 B
JavaScript
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
import nextVitals from 'eslint-config-next/core-web-vitals';
|
|
import nextTs from 'eslint-config-next/typescript';
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
...nextTs,
|
|
{
|
|
rules: {
|
|
quotes: ['error', 'single', { avoidEscape: true }],
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-empty-object-type': 'off',
|
|
'jsx-a11y/alt-text': 'off',
|
|
'react/display-name': 'off',
|
|
'react-hooks/set-state-in-effect': 'off',
|
|
'react-hooks/preserve-manual-memoization': 'off',
|
|
'react-hooks/refs': 'off',
|
|
'react-hooks/immutability': 'off',
|
|
'@next/next/no-img-element': 'off',
|
|
},
|
|
},
|
|
// Override default ignores of eslint-config-next.
|
|
globalIgnores([
|
|
// Default ignores of eslint-config-next:
|
|
'.next/**',
|
|
'out/**',
|
|
'build/**',
|
|
'next-env.d.ts',
|
|
]),
|
|
]);
|
|
|
|
export default eslintConfig;
|