tools: Remove golint.
- golint has been deprecated.
This commit is contained in:
parent
2bc735dff4
commit
0170d24abb
2 changed files with 3 additions and 8 deletions
|
|
@ -46,7 +46,7 @@ There is a wrapper script available to make running easier:
|
|||
|
||||
## 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)
|
||||
.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)
|
||||
.js | [js_syntax](http://nodejs.org/)
|
||||
.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/)
|
||||
.wasm | [wasm_validate](https://github.com/WebAssembly/wabt) • [wasm_objdump](https://github.com/WebAssembly/wabt)
|
||||
.pdf | [pdf2txt](https://github.com/pdfminer/pdfminer.six)
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ tools_for_extensions = [
|
|||
[["lua"], ["lua_syntax", "lua_check"]],
|
||||
[["js"], ["js_syntax"]],
|
||||
[["php"], ["php7_syntax"]],
|
||||
[["go"], ["go_vet", "golint", "godoc"]],
|
||||
[["go"], ["go_vet", "godoc"]],
|
||||
[["bash", "sh", "dash", "ksh"], ["shellcheck"]],
|
||||
[["wasm"], ["wasm_validate", "wasm_objdump"]],
|
||||
[["pdf"], ["pdf2txt"]],
|
||||
|
|
@ -282,11 +282,6 @@ tools_for_extensions = [
|
|||
url = "https://github.com/golang/go"
|
||||
command = "go vet"
|
||||
|
||||
[golint]
|
||||
dependencies = ["go/golang.org/x/lint/golint"]
|
||||
url = "https://github.com/golang/lint"
|
||||
command = "golint -set_exit_status"
|
||||
|
||||
[wasm_validate]
|
||||
dependencies = ["wabt"]
|
||||
url = "https://github.com/WebAssembly/wabt"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue