build ok,

This commit is contained in:
louiscklaw
2025-04-14 09:36:54 +08:00
parent 3c9054d754
commit 3bb0b898fa
6 changed files with 255 additions and 28 deletions

View File

@@ -71,6 +71,16 @@ module.exports = {
'react/jsx-fragments': 'off', // personal style
'react/prop-types': 'off', // TypeScript is used for type checking
'@next/next/no-img-element': 'off', // Temporary disabled
// customized
'@typescript-eslint/no-unsafe-assignment': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': 'warn',
'no-unused-vars': 'warn',
'no-console': 'warn',
'@typescript-eslint/no-empty-function': 'warn',
'eslint-comments/require-description': 'off',
'eslintreact/jsx-sort-props': 'off',
},
ignorePatterns: ['**/*del', '**/*bak'],
};