mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
494c8ab193
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>
7 lines
171 B
Plaintext
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
|