# shellcheck-py-mirror **Repository Path**: dnguyen/shellcheck-py-mirror ## Basic Information - **Project Name**: shellcheck-py-mirror - **Description**: A python wrapper to provide a pip-installable shellcheck binary. Internally this package provides a convenient way to download the pre-built shellcheck binary for your particular platform. - **Primary Language**: Python - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-06-17 - **Last Updated**: 2023-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![build status](https://github.com/shellcheck-py/shellcheck-py/actions/workflows/main.yml/badge.svg)](https://github.com/shellcheck-py/shellcheck-py/actions/workflows/main.yml) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/shellcheck-py/shellcheck-py/main.svg)](https://results.pre-commit.ci/latest/github/shellcheck-py/shellcheck-py/main) # shellcheck-py A python wrapper to provide a pip-installable [shellcheck] binary. Internally this package provides a convenient way to download the pre-built shellcheck binary for your particular platform. ### installation ```bash pip install shellcheck-py ``` ### usage After installation, the `shellcheck` binary should be available in your environment (or `shellcheck.exe` on windows). ### As a pre-commit hook See [pre-commit] for instructions Sample `.pre-commit-config.yaml`: ```yaml - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.9.0.2 hooks: - id: shellcheck ``` [shellcheck]: https://shellcheck.net [pre-commit]: https://pre-commit.com