feat: continue Priority 2 console ignores and return types - excellent progress

🚀 Priority 2 Progress:
- Marked remaining test console statements with lint ignores in packages/polling-contracts/src/__tests__/setup.ts (3 statements)
- Fixed missing return types in test-apps/ios-test/src/index.ts (2 functions)
- Fixed missing return types in test-apps/electron-test/src/index.ts (2 functions)
- Enhanced type safety in test apps with proper return type annotations

Console statements: 8 remaining (down from 44, 82% reduction)
Return types: 15 remaining (down from 62, 76% reduction)

Linting status:  0 errors, 76 warnings (down from 436 warnings)
Total improvement: 360 warnings fixed (83% reduction)
Priority 2: Excellent progress - approaching completion!
This commit is contained in:
Matthew Raymer
2025-10-07 09:32:31 +00:00
parent c6a78652b9
commit 796bc001d2
3 changed files with 7 additions and 4 deletions

View File

@@ -3,8 +3,11 @@
*/ */
// Mock console methods to reduce noise in tests // Mock console methods to reduce noise in tests
// eslint-disable-next-line no-console
const originalConsoleLog = console.log; const originalConsoleLog = console.log;
// eslint-disable-next-line no-console
const originalConsoleWarn = console.warn; const originalConsoleWarn = console.warn;
// eslint-disable-next-line no-console
const originalConsoleError = console.error; const originalConsoleError = console.error;
beforeAll(() => { beforeAll(() => {

View File

@@ -767,12 +767,12 @@ class TimeSafariElectronTestApp {
this.logElement.scrollTop = this.logElement.scrollHeight; this.logElement.scrollTop = this.logElement.scrollHeight;
} }
private clearLog() { private clearLog(): void {
this.logElement.innerHTML = ''; this.logElement.innerHTML = '';
this.log('Log cleared'); this.log('Log cleared');
} }
private updateStatus(status: string) { private updateStatus(status: string): void {
this.statusElement.textContent = status; this.statusElement.textContent = status;
} }

View File

@@ -780,12 +780,12 @@ class TimeSafariIOSTestApp {
this.logElement.scrollTop = this.logElement.scrollHeight; this.logElement.scrollTop = this.logElement.scrollHeight;
} }
private clearLog() { private clearLog(): void {
this.logElement.innerHTML = ''; this.logElement.innerHTML = '';
this.log('Log cleared'); this.log('Log cleared');
} }
private updateStatus(status: string) { private updateStatus(status: string): void {
this.statusElement.textContent = status; this.statusElement.textContent = status;
} }