diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-15 21:04:43 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-15 21:04:43 +0100 |
commit | f0d76bc298778789072b87b73789141c750f1f50 (patch) | |
tree | f3039d3ae48eab6e4c2ebe16b15c4657a0cc0f8b /autoload | |
parent | 54991f3082108cb41e5be06a068e3e0472b858b9 (diff) | |
download | ale-f0d76bc298778789072b87b73789141c750f1f50.zip |
Use g:ale_linters for turning gometalinter on, and update documentation as appropriate
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/linter.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index eec9cf15..8b31381c 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -22,6 +22,7 @@ let s:default_ale_linter_aliases = { " Only cargo is enabled for Rust by default. let s:default_ale_linters = { \ 'csh': ['shell'], +\ 'go': ['go build', 'gofmt', 'golint', 'gosimple', 'go vet', 'staticcheck'], \ 'help': [], \ 'rust': ['cargo'], \ 'text': [], |