tally-cli 0.12.0 → 0.13.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.
Files changed (2) hide show
  1. package/README.md +2 -6
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -59,7 +59,7 @@ tally integrates rules from multiple sources:
59
59
  | Source | Rules | Description |
60
60
  |--------|-------|-------------|
61
61
  | **[BuildKit](https://docs.docker.com/reference/build-checks/)** | 22/22 rules | Docker's official Dockerfile checks (captured + reimplemented) |
62
- | **tally** | 14 rules | Custom rules including secret detection with [gitleaks](https://github.com/gitleaks/gitleaks) |
62
+ | **tally** | 15 rules | Custom rules including secret detection with [gitleaks](https://github.com/gitleaks/gitleaks) |
63
63
  | **[Hadolint](https://github.com/hadolint/hadolint)** | 37 rules | Hadolint-compatible Dockerfile rules (expanding) |
64
64
  <!-- END RULES_TABLE -->
65
65
 
@@ -348,11 +348,7 @@ Features:
348
348
 
349
349
  ### Exit Codes
350
350
 
351
- | Code | Meaning |
352
- | ---- | ------------------------------------------------- |
353
- | `0` | No violations (or below `--fail-level` threshold) |
354
- | `1` | Violations found at or above `--fail-level` |
355
- | `2` | Parse or configuration error |
351
+ See [Exit Codes](docs/guide/exit-codes.md) for the full reference.
356
352
 
357
353
  ### Fail Level
358
354
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tally-cli",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "A fast, configurable linter for Dockerfiles and Containerfiles",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,13 +31,13 @@
31
31
  "node": ">=18.0.0"
32
32
  },
33
33
  "optionalDependencies": {
34
- "@wharflab/tally-darwin-arm64": "0.12.0",
35
- "@wharflab/tally-darwin-x64": "0.12.0",
36
- "@wharflab/tally-linux-arm64": "0.12.0",
37
- "@wharflab/tally-linux-x64": "0.12.0",
38
- "@wharflab/tally-windows-arm64": "0.12.0",
39
- "@wharflab/tally-windows-x64": "0.12.0",
40
- "@wharflab/tally-freebsd-x64": "0.12.0"
34
+ "@wharflab/tally-darwin-arm64": "0.13.0",
35
+ "@wharflab/tally-darwin-x64": "0.13.0",
36
+ "@wharflab/tally-linux-arm64": "0.13.0",
37
+ "@wharflab/tally-linux-x64": "0.13.0",
38
+ "@wharflab/tally-windows-arm64": "0.13.0",
39
+ "@wharflab/tally-windows-x64": "0.13.0",
40
+ "@wharflab/tally-freebsd-x64": "0.13.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"