From d15dbf690e25917f9431d7a7e4f3bc401036985e Mon Sep 17 00:00:00 2001 From: elvis Date: Fri, 15 Jun 2018 15:11:38 +0800 Subject: [PATCH 1/2] add syntax_checkers golangci_lint.vim --- syntax_checkers/go/golangci_lint.vim | 46 ++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 syntax_checkers/go/golangci_lint.vim diff --git a/syntax_checkers/go/golangci_lint.vim b/syntax_checkers/go/golangci_lint.vim new file mode 100644 index 000000000..2b74af21a --- /dev/null +++ b/syntax_checkers/go/golangci_lint.vim @@ -0,0 +1,46 @@ +"============================================================================ +"File: golangci_lint.vim +"Description: Check go syntax using 'golangci-lint' +"Maintainer: Hiroshi Ioka +"License: This program is free software. It comes without any warranty, +" to the extent permitted by applicable law. You can redistribute +" it and/or modify it under the terms of the Do What The Fuck You +" Want To Public License, Version 2, as published by Sam Hocevar. +" See http://sam.zoy.org/wtfpl/COPYING for more details. +" +"============================================================================ + +if exists('g:loaded_syntastic_go_golangci_lint_checker') + finish +endif +let g:loaded_syntastic_go_golangci_lint_checker = 1 + +let s:save_cpo = &cpo +set cpo&vim + +function! SyntaxCheckers_go_golangci_lint_GetLocList() dict + let makeprg = self.makeprgBuild({ + \ 'args_before': 'run', + \ }) + + let errorformat = + \ '%f:%l:%c: %m,' . + \ '%-G%.%#' + + return SyntasticMake({ + \ 'makeprg': makeprg, + \ 'errorformat': errorformat, + \ 'defaults': {'type': 'e'}, + \ 'subtype': 'Style' }) + +endfunction + +call g:SyntasticRegistry.CreateAndRegisterChecker({ + \ 'filetype': 'go', + \ 'name': 'golangci_lint', + \ 'exec': 'golangci-lint' }) + +let &cpo = s:save_cpo +unlet s:save_cpo + +" vim: set sw=4 sts=4 et fdm=marker: From 6c262291a3620cd1cf0390b446f09d1c421c413b Mon Sep 17 00:00:00 2001 From: elvis Date: Fri, 15 Jun 2018 15:17:57 +0800 Subject: [PATCH 2/2] update doc --- doc/syntastic-checkers.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/doc/syntastic-checkers.txt b/doc/syntastic-checkers.txt index 23f8131af..351ae9643 100644 --- a/doc/syntastic-checkers.txt +++ b/doc/syntastic-checkers.txt @@ -2516,6 +2516,7 @@ The following checkers are available for Go (filetype "go"): 4. Go Meta Linter...........|syntastic-go-gometalinter| 5. gotype...................|syntastic-go-gotype| 6. vet......................|syntastic-go-govet| + 7. golangci-lint............|syntastic-go-golangci-lint| ------------------------------------------------------------------------------ 1. go *syntastic-go-go* @@ -2620,6 +2621,16 @@ Note~ This checker doesn't call the "makeprgBuild()" function, and thus it ignores the usual 'g:syntastic_go_govet_