We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support to automatically detect "todos".
The text was updated successfully, but these errors were encountered:
@GuyARoss thanks for reporting. We do support "todos" for some languages. E.g. for Python we use Pylint linter which includes related rule - https://github.com/PyCQA/pylint/blob/main/pylint/checkers/misc.py#L81. Go, for example, is linted using Vet - https://pkg.go.dev/cmd/vet - which does not have something similar, so we'd have to create something custom.
We'll consider adding this feature for missing languages.
Sorry, something went wrong.
@cordis-dev is there any way that I can contribute this feature for go?
@GuyARoss there does not seem to be any related issues at https://github.com/golang/go/issues?page=9&q=is%3Aissue+is%3Aopen+cmd%2Fvet, but that would be one way of adding this check for go vet.
go vet
Alternatively, if any other related linters like https://staticcheck.io/docs/checks or https://revive.run/r will include this check in the future, we'd consider adding it to our tool-set.
Hope it helps.
No branches or pull requests
Add support to automatically detect "todos".
The text was updated successfully, but these errors were encountered: