mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-05 00:33:27 +08:00
Fix ESLint errors in test files and package-manager.js
Co-authored-by: pangerlkr <73515951+pangerlkr@users.noreply.github.com>
This commit is contained in:
@@ -1124,7 +1124,7 @@ src/main.ts
|
||||
} else {
|
||||
delete process.env.USERPROFILE;
|
||||
}
|
||||
try { fs.rmSync(r33Home, { recursive: true, force: true }); } catch {}
|
||||
try { fs.rmSync(r33Home, { recursive: true, force: true }); } catch (_e) { /* ignore cleanup errors */ }
|
||||
|
||||
// ── Round 46: path heuristic and checklist edge cases ──
|
||||
console.log('\ngetSessionStats Windows path heuristic (Round 46):');
|
||||
@@ -1985,7 +1985,7 @@ file.ts
|
||||
assert.ok(!afterContent.includes('Appended data'),
|
||||
'Original content should be unchanged');
|
||||
} finally {
|
||||
try { fs.chmodSync(readOnlyFile, 0o644); } catch {}
|
||||
try { fs.chmodSync(readOnlyFile, 0o644); } catch (_e) { /* ignore permission errors */ }
|
||||
fs.rmSync(tmpDir, { recursive: true, force: true });
|
||||
}
|
||||
})) passed++; else failed++;
|
||||
|
||||
Reference in New Issue
Block a user