feat: add usestdlibvars linter (#4357)

This commit is contained in:
Sasha Melentyev 2022-08-04 22:31:53 +03:00 committed by GitHub
parent 2e2ba20892
commit e36221504b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2931,6 +2931,7 @@ _Source code analysis tools, also known as Static Application Security Testing (
- [todocheck](https://github.com/preslavmihaylov/todocheck) - Static code analyser which links TODO comments in code with issues in your issue tracker.
- [unconvert](https://github.com/mdempsky/unconvert) - Remove unnecessary type conversions from Go source.
- [unused](https://github.com/dominikh/go-tools/tree/master/cmd/unused) - unused checks Go code for unused constants, variables, functions and types.
- [usestdlibvars](https://github.com/sashamelentyev/usestdlibvars) - A linter that detect the possibility to use variables/constants from the Go standard library.
- [validate](https://github.com/mccoyst/validate) - Automatically validates struct fields with tags.
**[⬆ back to top](#contents)**