- 前后端接入 ESLint 10 扁平配置(typescript-eslint 类型感知检查 + react-hooks/react-refresh),新增 lint / lint:check / lint:fix 脚本并纳入 check 链路 - 清理全部 no-unused-vars 与 no-useless-assignment 警告,修复 floating promises、正则转义等问题 - 删除确认无引用的死代码(markKuaishouCloudBindUrlRefreshFailed、未使用 helper 等)
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
import eslint from '@eslint/js'
|
|
import globals from 'globals'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default tseslint.config(
|
|
{
|
|
ignores: ['dist/**', 'node_modules/**', 'data/**'],
|
|
},
|
|
{
|
|
files: ['src/**/*.ts', 'scripts/**/*.ts'],
|
|
extends: [eslint.configs.recommended, ...tseslint.configs.recommended],
|
|
languageOptions: {
|
|
globals: globals.node,
|
|
parserOptions: {
|
|
project: './tsconfig.eslint.json',
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-floating-promises': [
|
|
'error',
|
|
{
|
|
ignoreIIFE: true,
|
|
ignoreVoid: true,
|
|
},
|
|
],
|
|
'@typescript-eslint/no-misused-promises': 'error',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
destructuredArrayIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'no-useless-assignment': 'warn',
|
|
},
|
|
},
|
|
{
|
|
files: ['src/**/*.test.ts'],
|
|
rules: {
|
|
'@typescript-eslint/no-floating-promises': 'off',
|
|
'no-control-regex': 'off',
|
|
'no-regex-spaces': 'off',
|
|
},
|
|
},
|
|
)
|