From 0170d24abbe69c494fd6c64ea393a7a3d00424fe Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Tue, 1 Jun 2021 01:05:09 +1000 Subject: [PATCH] tools: Remove golint. - golint has been deprecated. --- README.md | 4 ++-- eris/tools.toml | 7 +------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 05084f2..10f80fb 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/eris/tools.toml b/eris/tools.toml index 1f96d01..2586004 100644 --- a/eris/tools.toml +++ b/eris/tools.toml @@ -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"