An open API service indexing awesome lists of open source software.

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.

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
```