补齐 Web ESLint 插件配置
Project CI / AI game creator shell Rust shard 1/4 (push) Has been cancelled
Project CI / AI game creator shell Rust shard 2/4 (push) Has been cancelled
Project CI / AI game creator shell Rust shard 3/4 (push) Has been cancelled
Project CI / AI game creator shell Rust shard 4/4 (push) Has been cancelled
Project CI / AI game creator shell Rust smoke (push) Has been cancelled
Project CI / AI game creator shell Rust crates (push) Has been cancelled
Project CI / Backend tests (push) Has been cancelled
Project CI / Native shell tests (push) Has been cancelled
Project CI / Frontend tests (push) Has been cancelled
Project CI / Repository checks (push) Has been cancelled
Project CI / AI game creator shell web tests (push) Has been cancelled

启用仓库已有 react-hooks 与 react-refresh 规则插件
This commit is contained in:
2026-09-16 01:20:22 +08:00
parent fe02a99f62
commit 69b3b016b5
+6 -2
View File
@@ -3,6 +3,10 @@ module.exports = {
ignorePatterns: ['ignored/**'],
parser: '@typescript-eslint/parser',
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
plugins: ['simple-import-sort'],
rules: { 'simple-import-sort/imports': 'error' },
plugins: ['simple-import-sort', 'react-hooks', 'react-refresh'],
rules: {
'simple-import-sort/imports': 'error',
'react-hooks/exhaustive-deps': 'warn',
'react-refresh/only-export-components': 'warn',
},
};