chore: renovate all remaining files to current date#5
Merged
Conversation
Run gofmt -w on all Go source files (14 files had minor formatting drift). Strip trailing whitespace from text/doc files. No logic changes; all tests pass with -race -count=1. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0189QVFiKNFT5MEsskeEi19t
- Apply gofmt to 14 Go source files (formatting drift only, no logic changes) - Strip trailing whitespace from doc/text files - Fix HELP.md stale platform list (4 → 9 CI platforms) - Add renovated comment to scripts, Dockerfile, Makefile, docker-compose, scanner.yaml, .cursor/rules, .gitignore, remaining docs, web/index.html, tests/baseline data, tests/integration, ide/ files - All tests pass with -count=1; no behaviour changes Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0189QVFiKNFT5MEsskeEi19t
Comment on lines
65
to
+66
| } | ||
|
|
There was a problem hiding this comment.
Bare timestamp comment in a Go test file
The // renovated: 2026-07-02 comment sits outside any function or declaration at package scope. Tools like golangci-lint (with godot or godox linters) and some doc-comment checkers flag unexpected free-floating comments at end-of-file. If the sole intent is bumping the Git last-modified date, a blank line at EOF achieves the same effect without adding a semantically ambiguous comment. The same pattern also appears in tests/integration/scan_with_config_test.go.
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
After merge, all 121 tracked files will show July 2026 as their last-modified date on GitHub. No behaviour changes; all tests pass.
Generated by Claude Code
Greptile Summary
This PR is a pure housekeeping pass across 69 files:
gofmtstruct-field alignment applied to 14 Go source files, trailing whitespace stripped from Markdown/text files, and a// renovated: 2026-07-02timestamp comment appended to all remaining files so GitHub shows a July 2026 last-modified date. The one meaningful content change is an expanded CI platform list indocs/HELP.md.cmd/,pkg/): All diffs aregofmtwhitespace-only — struct field column-alignment and import reordering. No logic or behaviour changes.docs/HELP.md: CI pipeline examples updated from 4 platforms (Azure, GitHub, GitLab, Jenkins) to 9 (adds CircleCI, AWS CodeBuild, Google Cloud Build, Bitbucket Pipelines, Tekton).// renovated: 2026-07-02appended to scripts, Dockerfile, Makefile, YAML configs, cursor rules, doc files, and two Go integration test files.Confidence Score: 5/5
All changes are cosmetic — gofmt alignment, whitespace cleanup, a doc-text update, and timestamp comments. No logic paths are touched.
Every Go change is a whitespace-only gofmt pass with no reordering of logic, no altered function signatures, and no changed JSON tags or struct field names. The only content edit is the expanded CI platform list in HELP.md, which is informational. The renovated comments in Go test files are valid Go and do not affect test execution.
The two integration test files (tests/integration/scan_integration_test.go, tests/integration/scan_with_config_test.go) carry a free-floating timestamp comment that is slightly unconventional; worth a quick glance but not blocking.
Important Files Changed
// renovated: 2026-07-02comment outside any function — valid Go but unconventional for a test file; no behavioural change.//\t); gofmt struct alignment on sseEvent. No logic change.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[69 files changed] --> B[Go source files x14] A --> C[Doc / Markdown files x15] A --> D[Scripts / config / misc x40] B --> B1[gofmt: struct field alignment only] B --> B2[Import order normalised] B --> B3[Go test files + renovated comment] C --> C1[HELP.md: CI platforms 4 to 9 entries] C --> C2[Trailing whitespace stripped] C --> C3[Newline at EOF added] D --> D1[renovated: 2026-07-02 comment appended] B1 --> Z[No behaviour change] B2 --> Z B3 --> Z C1 --> Z C2 --> Z C3 --> Z D1 --> Z%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% flowchart TD A[69 files changed] --> B[Go source files x14] A --> C[Doc / Markdown files x15] A --> D[Scripts / config / misc x40] B --> B1[gofmt: struct field alignment only] B --> B2[Import order normalised] B --> B3[Go test files + renovated comment] C --> C1[HELP.md: CI platforms 4 to 9 entries] C --> C2[Trailing whitespace stripped] C --> C3[Newline at EOF added] D --> D1[renovated: 2026-07-02 comment appended] B1 --> Z[No behaviour change] B2 --> Z B3 --> Z C1 --> Z C2 --> Z C3 --> Z D1 --> ZReviews (1): Last reviewed commit: "chore: renovate all remaining files to c..." | Re-trigger Greptile