Files
trailofbits-buttercup/.shellcheckrc
T
Dan Guido 494c8ab193 chore: add linting infrastructure for shell, Docker, and GH Actions
Add pre-commit hooks for comprehensive static analysis:
- shellcheck and shfmt for shell script linting/formatting
- hadolint for Dockerfile linting
- actionlint for GitHub Actions workflow validation
- zizmor for GitHub Actions security analysis
- ty (Astral) for Python type checking

Add configuration files:
- .hadolint.yaml - Dockerfile linting rules
- .shellcheckrc - Shell script linting rules

Update .gitignore for new tool artifacts.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 10:59:15 +01:00

7 lines
171 B
Plaintext

# Shellcheck configuration for Buttercup
shell=bash
# Globally disable SC1091 (source file not followed)
# These are dynamically sourced or external files
disable=SC1091