Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/altipla-consulting/linter
Opinionated linter for Go source code.
https://github.com/altipla-consulting/linter
Last synced: about 1 month 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T07:13:37.000Z (7 months ago)
- Last Synced: 2024-06-20T19:18:05.231Z (7 months ago)
- Language: Go
- Homepage:
- Size: 44.9 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)