tools: Remove golint.

- golint has been deprecated.
This commit is contained in:
Andrew Hamilton 2021-06-01 01:05:09 +10:00
parent 2bc735dff4
commit 0170d24abb
2 changed files with 3 additions and 8 deletions

View file

@ -46,7 +46,7 @@ There is a wrapper script available to make running easier:
## Tools ## Tools
File types(100) | Tools(60) File types(100) | Tools(59)
----------:| ----- ----------:| -----
.* | [contents](http://pygments.org/) • [metadata](https://github.com/ahamilton/eris) • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log) .* | [contents](http://pygments.org/) • [metadata](https://github.com/ahamilton/eris) • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log)
.py | [python_syntax](https://en.wikipedia.org/wiki/Python_syntax_and_semantics) • [python_unittests](https://docs.python.org/3/library/unittest.html) • [pytest](https://docs.pytest.org/en/latest/) • [pydoc](https://docs.python.org/3/library/pydoc.html) • [mypy](http://mypy-lang.org/) • [python_coverage](https://coverage.readthedocs.io/) • [pycodestyle](http://pycodestyle.pycqa.org/en/latest/) • [pydocstyle](http://www.pydocstyle.org/en/2.1.1/usage.html) • [pyflakes](https://pypi.org/project/pyflakes/) • [pylint](https://www.pylint.org/) • [python_gut](https://github.com/ahamilton/eris) • [python_modulefinder](https://docs.python.org/3/library/modulefinder.html) • [dis](https://docs.python.org/3/library/dis.html) • [python_mccabe](https://pypi.org/project/mccabe/) • [bandit](https://pypi.org/project/bandit/) .py | [python_syntax](https://en.wikipedia.org/wiki/Python_syntax_and_semantics) • [python_unittests](https://docs.python.org/3/library/unittest.html) • [pytest](https://docs.pytest.org/en/latest/) • [pydoc](https://docs.python.org/3/library/pydoc.html) • [mypy](http://mypy-lang.org/) • [python_coverage](https://coverage.readthedocs.io/) • [pycodestyle](http://pycodestyle.pycqa.org/en/latest/) • [pydocstyle](http://www.pydocstyle.org/en/2.1.1/usage.html) • [pyflakes](https://pypi.org/project/pyflakes/) • [pylint](https://www.pylint.org/) • [python_gut](https://github.com/ahamilton/eris) • [python_modulefinder](https://docs.python.org/3/library/modulefinder.html) • [dis](https://docs.python.org/3/library/dis.html) • [python_mccabe](https://pypi.org/project/mccabe/) • [bandit](https://pypi.org/project/bandit/)
@ -59,7 +59,7 @@ File types(100) | Tools(60)
.lua | [lua_syntax](http://www.lua.org) • [lua_check](https://github.com/mpeterv/luacheck) .lua | [lua_syntax](http://www.lua.org) • [lua_check](https://github.com/mpeterv/luacheck)
.js | [js_syntax](http://nodejs.org/) .js | [js_syntax](http://nodejs.org/)
.php | [php7_syntax](https://en.wikipedia.org/wiki/PHP) .php | [php7_syntax](https://en.wikipedia.org/wiki/PHP)
.go | [go_vet](https://github.com/golang/go) • [golint](https://github.com/golang/lint) • [godoc](https://github.com/golang/go) .go | [go_vet](https://github.com/golang/go) • [godoc](https://github.com/golang/go)
.bash .sh .dash .ksh | [shellcheck](https://www.shellcheck.net/) .bash .sh .dash .ksh | [shellcheck](https://www.shellcheck.net/)
.wasm | [wasm_validate](https://github.com/WebAssembly/wabt) • [wasm_objdump](https://github.com/WebAssembly/wabt) .wasm | [wasm_validate](https://github.com/WebAssembly/wabt) • [wasm_objdump](https://github.com/WebAssembly/wabt)
.pdf | [pdf2txt](https://github.com/pdfminer/pdfminer.six) .pdf | [pdf2txt](https://github.com/pdfminer/pdfminer.six)

View file

@ -15,7 +15,7 @@ tools_for_extensions = [
[["lua"], ["lua_syntax", "lua_check"]], [["lua"], ["lua_syntax", "lua_check"]],
[["js"], ["js_syntax"]], [["js"], ["js_syntax"]],
[["php"], ["php7_syntax"]], [["php"], ["php7_syntax"]],
[["go"], ["go_vet", "golint", "godoc"]], [["go"], ["go_vet", "godoc"]],
[["bash", "sh", "dash", "ksh"], ["shellcheck"]], [["bash", "sh", "dash", "ksh"], ["shellcheck"]],
[["wasm"], ["wasm_validate", "wasm_objdump"]], [["wasm"], ["wasm_validate", "wasm_objdump"]],
[["pdf"], ["pdf2txt"]], [["pdf"], ["pdf2txt"]],
@ -282,11 +282,6 @@ tools_for_extensions = [
url = "https://github.com/golang/go" url = "https://github.com/golang/go"
command = "go vet" command = "go vet"
[golint]
dependencies = ["go/golang.org/x/lint/golint"]
url = "https://github.com/golang/lint"
command = "golint -set_exit_status"
[wasm_validate] [wasm_validate]
dependencies = ["wabt"] dependencies = ["wabt"]
url = "https://github.com/WebAssembly/wabt" url = "https://github.com/WebAssembly/wabt"