diff options
author | Craig Rodrigues <rodrigc@crodrigues.org> | 2023-06-27 02:52:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 18:52:50 +0900 |
commit | 29e5ffe35a2fa1ca5ba19eebfe7cdd0191c16e39 (patch) | |
tree | 0224975d8c17ddcd0dcb7ba9e82c184e1bb7dcd0 /ale_linters/go | |
parent | 21f1ab6ffc5ea958d558a5d9f5b0e5ab9110ee4e (diff) | |
download | ale-29e5ffe35a2fa1ca5ba19eebfe7cdd0191c16e39.zip |
Remove golint supported-tools (#4535)
golint has been deprecated and was archived in 2019
Diffstat (limited to 'ale_linters/go')
-rw-r--r-- | ale_linters/go/golint.vim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ale_linters/go/golint.vim b/ale_linters/go/golint.vim deleted file mode 100644 index 79bfaeb5..00000000 --- a/ale_linters/go/golint.vim +++ /dev/null @@ -1,21 +0,0 @@ -" Author: neersighted <bjorn@neersighted.com> -" Description: golint for Go files - -call ale#Set('go_golint_executable', 'golint') -call ale#Set('go_golint_options', '') - -function! ale_linters#go#golint#GetCommand(buffer) abort - let l:options = ale#Var(a:buffer, 'go_golint_options') - - return ale#go#EnvString(a:buffer) . '%e' - \ . (!empty(l:options) ? ' ' . l:options : '') - \ . ' %t' -endfunction - -call ale#linter#Define('go', { -\ 'name': 'golint', -\ 'output_stream': 'both', -\ 'executable': {b -> ale#Var(b, 'go_golint_executable')}, -\ 'command': function('ale_linters#go#golint#GetCommand'), -\ 'callback': 'ale#handlers#unix#HandleAsWarning', -\}) |