Skip to content

Commit 462f803

Browse files
CybotTMclaude
andcommitted
fix(catalog): add eslint catalog entry to enable upgrade prompts
ESLint was missing from the catalog, causing guide.sh to skip it during upgrade prompts. The script only processes tools with catalog entries (line 236: if catalog_has_tool). Added eslint.json with: - npm_global install method - guide section for upgrade prompts - order: 300 (formatters/linters group) This fixes the issue where "make outdated" shows eslint as outdated but "make upgrade" doesn't prompt for it. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e18d7cb commit 462f803

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

catalog/eslint.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "eslint",
3+
"install_method": "npm_global",
4+
"description": "JavaScript and TypeScript linter",
5+
"homepage": "https://eslint.org",
6+
"github_repo": "eslint/eslint",
7+
"binary_name": "eslint",
8+
"package_name": "eslint",
9+
"guide": {
10+
"display_name": "ESLint",
11+
"install_action": "upgrade",
12+
"order": 300
13+
}
14+
}

0 commit comments

Comments
 (0)