@contino/tally-linux-x64 0.1.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/bin/tally +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@ tally integrates rules from multiple sources:
|
|
|
8
8
|
|
|
9
9
|
| Source | Rules | Description |
|
|
10
10
|
|--------|-------|-------------|
|
|
11
|
-
| **[BuildKit](https://docs.docker.com/reference/build-checks/)** |
|
|
11
|
+
| **[BuildKit](https://docs.docker.com/reference/build-checks/)** | 22 rules | Docker's official Dockerfile checks (automatically captured) |
|
|
12
12
|
| **tally** | 3 rules | Custom rules including secret detection with [gitleaks](https://github.com/gitleaks/gitleaks) |
|
|
13
|
-
| **[Hadolint](https://github.com/hadolint/hadolint)** |
|
|
13
|
+
| **[Hadolint](https://github.com/hadolint/hadolint)** | 12 rules | Hadolint-compatible Dockerfile rules (expanding) |
|
|
14
14
|
|
|
15
15
|
**See [RULES.md](RULES.md) for the complete rules reference.**
|
|
16
16
|
|
|
@@ -364,7 +364,7 @@ The JSON output includes:
|
|
|
364
364
|
"file": "Dockerfile",
|
|
365
365
|
"start": { "line": 2, "column": 0 }
|
|
366
366
|
},
|
|
367
|
-
"rule": "StageNameCasing",
|
|
367
|
+
"rule": "buildkit/StageNameCasing",
|
|
368
368
|
"message": "Stage name 'Builder' should be lowercase",
|
|
369
369
|
"severity": "warning",
|
|
370
370
|
"docUrl": "https://docs.docker.com/go/dockerfile/rule/stage-name-casing/"
|
|
@@ -381,7 +381,7 @@ The JSON output includes:
|
|
|
381
381
|
"files": 1
|
|
382
382
|
},
|
|
383
383
|
"files_scanned": 1,
|
|
384
|
-
"rules_enabled":
|
|
384
|
+
"rules_enabled": 35
|
|
385
385
|
}
|
|
386
386
|
```
|
|
387
387
|
|
package/bin/tally
CHANGED
|
Binary file
|