@contino/tally-windows-x64 0.1.3 → 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 +10 -4
- package/bin/tally.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,14 +8,20 @@ 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
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
19
|
+
### Homebrew (macOS/Linux)
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
brew install tinovyatkin/tap/tally
|
|
23
|
+
```
|
|
24
|
+
|
|
19
25
|
### NPM
|
|
20
26
|
|
|
21
27
|
```bash
|
|
@@ -358,7 +364,7 @@ The JSON output includes:
|
|
|
358
364
|
"file": "Dockerfile",
|
|
359
365
|
"start": { "line": 2, "column": 0 }
|
|
360
366
|
},
|
|
361
|
-
"rule": "StageNameCasing",
|
|
367
|
+
"rule": "buildkit/StageNameCasing",
|
|
362
368
|
"message": "Stage name 'Builder' should be lowercase",
|
|
363
369
|
"severity": "warning",
|
|
364
370
|
"docUrl": "https://docs.docker.com/go/dockerfile/rule/stage-name-casing/"
|
|
@@ -375,7 +381,7 @@ The JSON output includes:
|
|
|
375
381
|
"files": 1
|
|
376
382
|
},
|
|
377
383
|
"files_scanned": 1,
|
|
378
|
-
"rules_enabled":
|
|
384
|
+
"rules_enabled": 35
|
|
379
385
|
}
|
|
380
386
|
```
|
|
381
387
|
|
package/bin/tally.exe
CHANGED
|
Binary file
|