From d15dbf690e25917f9431d7a7e4f3bc401036985e Mon Sep 17 00:00:00 2001 From: elvis Date: Fri, 15 Jun 2018 15:11:38 +0800 Subject: [PATCH] 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 00000000..2b74af21 --- /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: