https://github.com/coatl-dev/godolint-coatl
🐍 python3/pip3 wrapper for installing godolint
https://github.com/coatl-dev/godolint-coatl
Last synced: 4 months ago
JSON representation
🐍 python3/pip3 wrapper for installing godolint
- Host: GitHub
- URL: https://github.com/coatl-dev/godolint-coatl
- Owner: coatl-dev
- License: mit
- Created: 2025-01-30T06:36:25.000Z (over 1 year ago)
- Default Branch: coatl
- Last Pushed: 2026-01-13T02:49:49.000Z (5 months ago)
- Last Synced: 2026-01-16T13:20:09.468Z (5 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# godolint-coatl
[](https://github.com/coatl-dev/godolint-coatl/releases/latest)
[](https://pepy.tech/project/godolint-coatl)
A python wrapper to provide a pip-installable [godolint] binary. Inspired by
[shellcheck-py].
Internally this package provides a convenient way to download the pre-built
godolint binary for your particular platform.
## Installation
```bash
pip install godolint-coatl
```
## Usage
After installation, the `godolint` binary should be available in your
environment (or `godolint.exe` on Windows).
### As a pre-commit hook
See [pre-commit] for instructions
Sample `.pre-commit-config.yaml`:
```yaml
- repo: https://github.com/coatl-dev/godolint-coatl
rev: 1.2.1
hooks:
- id: godolint
```
[godolint]: https://github.com/zabio3/godolint
[pre-commit]: https://pre-commit.com
[shellcheck-py]: https://github.com/shellcheck-py/shellcheck-py