diff --git a/README.md b/README.md index 1fdca5a..c190648 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ name. That seems to be the fairest way to arrange this table. | Cython (pyrex filetype) | [cython](http://cython.org/) | | D | [dmd](https://dlang.org/dmd-linux.html)^ | | Fortran | [gcc](https://gcc.gnu.org/) | +| Go | [gofmt -e](https://golang.org/cmd/gofmt/), [go vet](https://golang.org/cmd/vet/), [golint](https://godoc.org/github.com/golang/lint) | | Haskell | [ghc](https://www.haskell.org/ghc/) | | HTML | [HTMLHint](http://htmlhint.com/), [tidy](http://www.html-tidy.org/) | | JavaScript | [eslint](http://eslint.org/), [jscs](http://jscs.info/), [jshint](http://jshint.com/) | diff --git a/ale_linters/go/gofmt.vim b/ale_linters/go/gofmt.vim new file mode 100644 index 0000000..83c4d81 --- /dev/null +++ b/ale_linters/go/gofmt.vim @@ -0,0 +1,17 @@ +" Author: neersighted +" Description: gofmt for Go files + +if exists('g:loaded_ale_linters_go_gofmt') + finish +endif + +let g:loaded_ale_linters_go_gofmt = 1 + +call ale#linter#Define('go', { +\ 'name': 'gofmt', +\ 'output_stream': 'stderr', +\ 'executable': 'gofmt', +\ 'command': g:ale#util#stdin_wrapper . ' .go gofmt -e', +\ 'callback': 'ale#handlers#HandleUnixFormatAsError', +\}) + diff --git a/ale_linters/go/golint.vim b/ale_linters/go/golint.vim new file mode 100644 index 0000000..25787e0 --- /dev/null +++ b/ale_linters/go/golint.vim @@ -0,0 +1,15 @@ +" Author: neersighted +" Description: golint for Go files + +if exists('g:loaded_ale_linters_go_golint') + finish +endif + +let g:loaded_ale_linters_go_golint = 1 + +call ale#linter#Define('go', { +\ 'name': 'golint', +\ 'executable': 'golint', +\ 'command': g:ale#util#stdin_wrapper . ' .go golint', +\ 'callback': 'ale#handlers#HandleUnixFormatAsWarning', +\}) diff --git a/ale_linters/go/govet.vim b/ale_linters/go/govet.vim new file mode 100644 index 0000000..9db39ea --- /dev/null +++ b/ale_linters/go/govet.vim @@ -0,0 +1,17 @@ +" Author: neersighted +" Description: go vet for Go files + +if exists('g:loaded_ale_linters_go_govet') + finish +endif + +let g:loaded_ale_linters_go_govet = 1 + +call ale#linter#Define('go', { +\ 'name': 'go vet', +\ 'output_stream': 'stderr', +\ 'executable': 'go', +\ 'command': g:ale#util#stdin_wrapper . ' .go go vet', +\ 'callback': 'ale#handlers#HandleUnixFormatAsError', +\}) + diff --git a/autoload/ale/handlers.vim b/autoload/ale/handlers.vim index e595ae4..cca35d4 100644 --- a/autoload/ale/handlers.vim +++ b/autoload/ale/handlers.vim @@ -4,6 +4,48 @@ scriptencoding utf-8 " linter which outputs warnings and errors in a format accepted by one of " these functions can simply use one of these pre-defined error handlers. +let s:path_pattern = '[a-zA-Z]\?\\\?:\?[[:alnum:]/\.-]\+' + +function! s:HandleUnixFormat(buffer, lines, type) abort + " Matches patterns line the following: + " + " file.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args + " file.go:53:10: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) + " file.go:5:2: expected declaration, found 'STRING' "log" + let l:pattern = '^' . s:path_pattern . ':\(\d\+\):\?\(\d\+\)\?: \(.\+\)$' + let l:output = [] + + for l:line in a:lines + let l:match = matchlist(l:line, l:pattern) + + if len(l:match) == 0 + continue + endif + + " vcol is Needed to indicate that the column is a character. + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[1] + 0, + \ 'vcol': 0, + \ 'col': l:match[2] + 0, + \ 'text': l:match[3], + \ 'type': a:type, + \ 'nr': -1, + \}) + endfor + + return l:output +endfunction + +function! ale#handlers#HandleUnixFormatAsError(buffer, lines) abort + return s:HandleUnixFormat(a:buffer, a:lines, 'E') +endfunction + +function! ale#handlers#HandleUnixFormatAsWarning(buffer, lines) abort + return s:HandleUnixFormat(a:buffer, a:lines, 'W') +endfunction + + function! ale#handlers#HandleGCCFormat(buffer, lines) abort " Look for lines like the following. " diff --git a/doc/ale.txt b/doc/ale.txt index cb6d930..dbecf4f 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -55,6 +55,7 @@ The following languages and tools are supported. * Cython (pyrex filetype): 'cython' * D: 'dmd' * Fortran: 'gcc' +* Go: 'gofmt -e', 'go vet', 'golint' * Haskell: 'ghc' * HTML: 'HTMLHint', 'tidy' * JavaScript: 'eslint', 'jscs', 'jshint'