https://github.com/altipla-consulting/linter
Opinionated linter for Go source code.
https://github.com/altipla-consulting/linter
Last synced: 4 months ago
JSON representation
Opinionated linter for Go source code.
- Host: GitHub
- URL: https://github.com/altipla-consulting/linter
- Owner: altipla-consulting
- License: mit
- Created: 2022-04-28T14:49:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-23T11:20:08.000Z (5 months ago)
- Last Synced: 2025-02-23T12:23:26.774Z (5 months ago)
- Language: Go
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# linter
Opinionated linter for Go source code.
> **WARNING:** It uses [revive](https://github.com/mgechev/revive) underneath. We recommend using revive directly instead of our internal customization on top of it.
## Install
```shell
go install github.com/altipla-consulting/linter@latest
```## Usage
Add it to the Makefile `lint` rule:
```makefile
lint:
go install ./...
go vet ./...
linter ./...
```## Contributing
You can make pull requests or create issues in GitHub. Any code you send should be formatted using `make gofmt`.
## License
[MIT License](LICENSE)