buster/web/eslint.config.mjs

36 lines
1009 B
JavaScript
Raw Normal View History

2025-03-08 07:02:56 +08:00
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import { FlatCompat } from '@eslint/eslintrc';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname
});
const eslintConfig = [
...compat.config({
extends: ['next/core-web-vitals', 'next/typescript', 'plugin:storybook/recommended'],
env: {
node: true,
jest: true
},
rules: {
'@next/next/no-img-element': 'off',
'react-hooks/exhaustive-deps': 'off',
'no-unused-vars': 'off',
'no-empty-pattern': 'off',
'no-undef': 'error',
'react/no-children-prop': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off'
}
})
];
export default eslintConfig;