feat: comprehensive oxlint cleanup - remove unused code

🧹 Cleanup Summary:
- Fixed 83 oxlint warnings across 50+ files
- Removed unused imports, variables, and functions
- Maintained all functional code and error handling
- Improved bundle size and code maintainability

📝 Key Changes:
- Cleaned unused React hooks (useState, useEffect, useClashInfo)
- Removed unused Material-UI imports (useTheme, styled components)
- Deleted unused interfaces and type definitions
- Fixed spread operator usage and boolean casting
- Simplified catch parameters where appropriate

🎯 Files Modified:
- React components: home.tsx, settings, profiles, etc.
- Custom hooks: use-*.ts files
- Utility functions and type definitions
- Configuration files

 Result: 0 oxlint warnings (from 83 warnings)
🔧 All functionality preserved
📦 Reduced bundle size through dead code elimination
This commit is contained in:
Tunglies
2025-08-22 18:48:56 +08:00
parent 6a1fce69e0
commit 475a09bb54
53 changed files with 254 additions and 254 deletions

View File

@@ -186,7 +186,6 @@ const Layout = () => {
// 初始化全局日志服务
useEffect(() => {
if (clashInfo) {
const { server = "", secret = "" } = clashInfo;
initGlobalLogService(enableLog, logLevel);
}
}, [clashInfo, enableLog, logLevel]);
@@ -297,7 +296,7 @@ const Layout = () => {
setTimeout(() => {
try {
initialOverlay.remove();
} catch (e) {
} catch {
console.log("[Layout] 加载指示器已被移除");
}
}, 300);
@@ -403,7 +402,7 @@ const Layout = () => {
hasEventTriggered = true;
performInitialization();
}
} catch (err) {
} catch {
console.log("[Layout] 后端尚未就绪,等待启动完成事件");
}
};