tally-cli 0.9.5 → 0.9.6
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 +17 -3
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -58,9 +58,9 @@ tally integrates rules from multiple sources:
|
|
|
58
58
|
<!-- BEGIN RULES_TABLE -->
|
|
59
59
|
| Source | Rules | Description |
|
|
60
60
|
|--------|-------|-------------|
|
|
61
|
-
| **[BuildKit](https://docs.docker.com/reference/build-checks/)** | 22/22 rules | Docker's official Dockerfile checks
|
|
62
|
-
| **tally** | 9 rules | Custom
|
|
63
|
-
| **[Hadolint](https://github.com/hadolint/hadolint)** | 37 rules | Hadolint-compatible Dockerfile rules
|
|
61
|
+
| **[BuildKit](https://docs.docker.com/reference/build-checks/)** | 22/22 rules | Docker's official Dockerfile checks (captured + reimplemented) |
|
|
62
|
+
| **tally** | 9 rules | Custom rules including secret detection with [gitleaks](https://github.com/gitleaks/gitleaks) |
|
|
63
|
+
| **[Hadolint](https://github.com/hadolint/hadolint)** | 37 rules | Hadolint-compatible Dockerfile rules (expanding) |
|
|
64
64
|
<!-- END RULES_TABLE -->
|
|
65
65
|
|
|
66
66
|
**See [RULES.md](RULES.md) for the complete rules reference.**
|
|
@@ -371,6 +371,20 @@ tally lint --fail-level style Dockerfile
|
|
|
371
371
|
|
|
372
372
|
Available levels (from most to least severe): `error`, `warning`, `info`, `style` (default), `none`
|
|
373
373
|
|
|
374
|
+
## IDE Integration
|
|
375
|
+
|
|
376
|
+
### VS Code
|
|
377
|
+
|
|
378
|
+
Install the official **[tally extension](https://marketplace.visualstudio.com/items?itemName=wharflab.tally)** from the Visual Studio Marketplace for real-time linting and diagnostics.
|
|
379
|
+
|
|
380
|
+
### Other Editors
|
|
381
|
+
|
|
382
|
+
Any editor that supports the [Language Server Protocol](https://microsoft.github.io/language-server-protocol/) can use tally's built-in LSP server over stdio:
|
|
383
|
+
|
|
384
|
+
```bash
|
|
385
|
+
npx -y tally-cli lsp --stdio
|
|
386
|
+
```
|
|
387
|
+
|
|
374
388
|
## Development
|
|
375
389
|
|
|
376
390
|
### Running Tests
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tally-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.6",
|
|
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.9.
|
|
35
|
-
"@wharflab/tally-darwin-x64": "0.9.
|
|
36
|
-
"@wharflab/tally-linux-arm64": "0.9.
|
|
37
|
-
"@wharflab/tally-linux-x64": "0.9.
|
|
38
|
-
"@wharflab/tally-windows-arm64": "0.9.
|
|
39
|
-
"@wharflab/tally-windows-x64": "0.9.
|
|
40
|
-
"@wharflab/tally-freebsd-x64": "0.9.
|
|
34
|
+
"@wharflab/tally-darwin-arm64": "0.9.6",
|
|
35
|
+
"@wharflab/tally-darwin-x64": "0.9.6",
|
|
36
|
+
"@wharflab/tally-linux-arm64": "0.9.6",
|
|
37
|
+
"@wharflab/tally-linux-x64": "0.9.6",
|
|
38
|
+
"@wharflab/tally-windows-arm64": "0.9.6",
|
|
39
|
+
"@wharflab/tally-windows-x64": "0.9.6",
|
|
40
|
+
"@wharflab/tally-freebsd-x64": "0.9.6"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|