Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .codacy/codacy.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
runtimes:
- dart@3.7.2
- go@1.22.3
- java@17.0.10
- node@22.2.0
- python@3.11.11
Comment on lines +2 to 6
Copy link

Copilot AI Jan 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change from 'flutter@3.7.2' to 'dart@3.7.2' for the runtime appears unrelated to the container-scan feature being added. While this may be a valid correction (since dartanalyzer is a Dart tool, not specifically a Flutter tool), it would be clearer if configuration changes unrelated to the main feature were in a separate commit or PR, or at least mentioned in the PR description.

Copilot uses AI. Check for mistakes.
- flutter@3.7.2
tools:
- eslint@9.38.0
- dartanalyzer@3.7.2
- eslint@8.57.0
- lizard@1.17.31
- pmd@6.55.0
- pylint@3.3.9
- revive@1.12.0
- pmd@7.11.0
- pylint@3.3.6
- revive@1.7.0
Comment on lines +8 to +13
Copy link

Copilot AI Jan 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Multiple tool version changes (eslint: 9.38.0→8.57.0, pmd: 6.55.0→7.11.0, pylint: 3.3.9→3.3.6, revive: 1.12.0→1.7.0) are included in this PR. The eslint and pylint changes appear to be downgrades, while pmd is an upgrade. These version changes seem unrelated to the container-scan feature and would benefit from being in a separate PR or being explained in the PR description.

Copilot uses AI. Check for mistakes.
- semgrep@1.78.0
- trivy@0.66.0
- dartanalyzer@3.7.2
4 changes: 2 additions & 2 deletions cli-v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ func main() {
}
}

// Check if command is init/update/version/help - these don't require configuration
// Check if command is init/update/version/help/container-scan - these don't require configuration
if len(os.Args) > 1 {
cmdName := os.Args[1]
if cmdName == "init" || cmdName == "update" || cmdName == "version" || cmdName == "help" {
if cmdName == "init" || cmdName == "update" || cmdName == "version" || cmdName == "help" || cmdName == "container-scan" {
cmd.Execute()
return
}
Expand Down
Loading