Skip to content

Commit 2980422

Browse files
Clean up legacy debt and fix linting errors
Legacy Debt Cleanup: - Remove redundant .eslintrc.json (eslint.config.mjs is the active config) - Fix unused variable linting error in template-engine.js Linting: - Remove unused error parameter in catch block (line 37) - All linting checks now pass with no errors This ensures clean code quality for v2.4.2 release. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4cf3873 commit 2980422

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

.eslintrc.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

cli/lib/template-engine.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function loadStackConfig() {
3434
GPT_MODEL: 'gpt-5',
3535
MCP_ENABLED: true,
3636
};
37-
} catch (error) {
37+
} catch {
3838
console.warn('Warning: Could not load stack config, using defaults');
3939
return {};
4040
}

0 commit comments

Comments
 (0)