mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-26 11:00:38 +00:00
Added shellcheck to catch bash anti-patterns across 115 scripts: - Created .shellcheckrc configuration - Added GitHub Actions workflow (.github/workflows/lint.yml) - Documented shellcheck usage in README Currently found 3,598 warnings (expected for unlinted codebase). Using || true temporarily to not block PRs - warnings will be fixed incrementally in follow-up tasks. Common issues: SC2250 (missing braces), SC2162 (read without -r), SC2312 (command substitution masking), SC1091 (sourcing pattern). Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
6 lines
228 B
Text
6 lines
228 B
Text
# shellcheck configuration for spawn
|
|
# Enable all optional checks for maximum code quality
|
|
enable=all
|
|
|
|
# Disable specific warnings that conflict with spawn's design patterns
|
|
# (Add suppressions here after initial run if needed)
|