style: fix formatting issues across 27 plugin files#97
style: fix formatting issues across 27 plugin files#97dkmcintyre wants to merge 1 commit intotrailofbits:mainfrom
Conversation
Pre-commit hooks auto-fixed missing newlines at EOF and trailing whitespace to satisfy end-of-file-fixer and trailing-whitespace checks. Co-Authored-By: Claude Code <noreply@anthropic.com>
Review SummaryFive-source review: pr-review-toolkit (code-reviewer, silent-failure-hunter, pr-test-analyzer) + OpenAI Codex + Google Gemini. FindingsAll 5 review sources confirmed: no issues found. Every change is mechanical whitespace normalization (EOF newlines, trailing whitespace, trailing blank lines). No content was altered.
Verification
No fixes neededAll findings are P4 (informational). No code changes required. Reviewed with Claude Code, OpenAI Codex, and Google Gemini |
|
Rebased this branch onto latest Since I can't push to the fork, I've pushed the rebased branch to |
check-yaml, check-json, end-of-file-fixer, and trailing-whitespace only ran locally via pre-commit. Contributors who skip pre-commit can introduce formatting drift (see #97). Add a CI job using pre-commit/action to enforce these four hooks on every PR. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* ci: enforce pre-commit formatting hooks in CI check-yaml, check-json, end-of-file-fixer, and trailing-whitespace only ran locally via pre-commit. Contributors who skip pre-commit can introduce formatting drift (see #97). Add a CI job using pre-commit/action to enforce these four hooks on every PR. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: consolidate lint jobs into single pre-commit pass Run all pre-commit hooks (ruff, shellcheck, shfmt, check-yaml, check-json, end-of-file-fixer, trailing-whitespace) in one job instead of separate CI jobs per tool. Fixes the extra_args error where pre-commit run only accepts one hook ID positionally. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix trailing whitespace and EOF in semgrep-rule-creator Pre-commit hooks caught two files missed by the earlier formatting PR: trailing blank line in quick-reference.md and trailing whitespace plus missing final newline in workflow.md. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Summary
Pre-commit hooks (
end-of-file-fixerandtrailing-whitespace) now pass for all files.Test plan
pre-commit run --all-filespasses (exceptshellcheckwhich requires system install)🤖 Generated with Claude Code