https://github.com/vscode-shellcheck/shellcheck-binaries
ShellCheck binaries distributed in .tar.gz format for Linux and macOS, including M1 Macs. Used by ShellCheck VS Code extension.
https://github.com/vscode-shellcheck/shellcheck-binaries
shellcheck
Last synced: about 2 months ago
JSON representation
ShellCheck binaries distributed in .tar.gz format for Linux and macOS, including M1 Macs. Used by ShellCheck VS Code extension.
- Host: GitHub
- URL: https://github.com/vscode-shellcheck/shellcheck-binaries
- Owner: vscode-shellcheck
- Created: 2022-09-02T08:06:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-08T03:16:01.000Z (over 1 year ago)
- Last Synced: 2024-05-28T22:08:14.983Z (about 1 year ago)
- Topics: shellcheck
- Language: Shell
- Homepage:
- Size: 74.2 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ShellCheck binaries for the VS Code extension
ShellCheck binaries distributed in `.tar.gz` format for Linux and macOS. Used by [ShellCheck VS Code extension](https://github.com/vscode-shellcheck/vscode-shellcheck).
## Why?
- ShellCheck ships binaries packaged in `.tar.xz` format, in which [`bindl`](https://github.com/felipecrs/bindl/issues/217) doesn't support by default.
## How to generate more binaries?
Simply push a new tag to this repository in the format `v*.*.*` matching the [ShellCheck version](https://github.com/koalaman/shellcheck/releases). The CI will generate binaries for all supported platforms and upload them to the release.
Example:
```console
git push origin HEAD:refs/tags/v0.10.0 --force
```## Development
Install dependencies:
```sh
npm ci
```### Check
```sh
npm run check
```### Fix
```sh
npm run fix
```