-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomersp3Minor bug or general feature requestMinor bug or general feature request
Description
Description
Problem: When running Claude Code Action, syntax errors in configuration files are silently ignored. Users get no error messages, making it hard to debug issues.
Request: Please add syntax error detection and display for:
.claude/setting.json- GitHub Actions workflow syntax (especially in Claude Code Action specific fields)
Examples
GitHub Actions Workflow
Currently no error shown for:
allowed_tools: |
- 'Bash(pnpm install)'
- 'Bash(pnpm test)'
- 'Bash(pnpm build)'
- 'Bash(pnpm lint)'Expected error message:
Error: Invalid syntax in 'allowed_tools'. Remove hyphens (-) when using pipe (|) notation.
Correct format:
allowed_tools: |
'Bash(pnpm install)'
'Bash(pnpm test)'
.claude/setting.json
Currently no error shown for invalid JSON syntax.
Expected: Clear error messages with line numbers for JSON syntax errors.
Benefits:
- Faster debugging
- Better developer experience
- Prevents silent failures
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomersp3Minor bug or general feature requestMinor bug or general feature request