summaryrefslogtreecommitdiff
path: root/ale_linters/go/gofmt.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/go/gofmt.vim')
-rw-r--r--ale_linters/go/gofmt.vim7
1 files changed, 0 insertions, 7 deletions
diff --git a/ale_linters/go/gofmt.vim b/ale_linters/go/gofmt.vim
index 83c4d811..50d25086 100644
--- a/ale_linters/go/gofmt.vim
+++ b/ale_linters/go/gofmt.vim
@@ -1,12 +1,6 @@
" Author: neersighted <bjorn@neersighted.com>
" 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',
@@ -14,4 +8,3 @@ call ale#linter#Define('go', {
\ 'command': g:ale#util#stdin_wrapper . ' .go gofmt -e',
\ 'callback': 'ale#handlers#HandleUnixFormatAsError',
\})
-