tally-cli 0.9.10 → 0.10.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 +5 -1
- 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** |
|
|
62
|
+
| **tally** | 10 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
|
|
|
@@ -377,6 +377,10 @@ Available levels (from most to least severe): `error`, `warning`, `info`, `style
|
|
|
377
377
|
|
|
378
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
379
|
|
|
380
|
+
### JetBrains IDEs
|
|
381
|
+
|
|
382
|
+
Install the official **[Tally plugin](https://plugins.jetbrains.com/plugin/30255-tally)** from JetBrains Marketplace for IDE integration in IntelliJ-based editors.
|
|
383
|
+
|
|
380
384
|
### Other Editors
|
|
381
385
|
|
|
382
386
|
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:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tally-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.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.
|
|
35
|
-
"@wharflab/tally-darwin-x64": "0.
|
|
36
|
-
"@wharflab/tally-linux-arm64": "0.
|
|
37
|
-
"@wharflab/tally-linux-x64": "0.
|
|
38
|
-
"@wharflab/tally-windows-arm64": "0.
|
|
39
|
-
"@wharflab/tally-windows-x64": "0.
|
|
40
|
-
"@wharflab/tally-freebsd-x64": "0.
|
|
34
|
+
"@wharflab/tally-darwin-arm64": "0.10.0",
|
|
35
|
+
"@wharflab/tally-darwin-x64": "0.10.0",
|
|
36
|
+
"@wharflab/tally-linux-arm64": "0.10.0",
|
|
37
|
+
"@wharflab/tally-linux-x64": "0.10.0",
|
|
38
|
+
"@wharflab/tally-windows-arm64": "0.10.0",
|
|
39
|
+
"@wharflab/tally-windows-x64": "0.10.0",
|
|
40
|
+
"@wharflab/tally-freebsd-x64": "0.10.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|