summaryrefslogtreecommitdiff
path: root/ale_linters/go/staticcheck.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/go/staticcheck.vim')
-rw-r--r--ale_linters/go/staticcheck.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/go/staticcheck.vim b/ale_linters/go/staticcheck.vim
new file mode 100644
index 00000000..711e2ce2
--- /dev/null
+++ b/ale_linters/go/staticcheck.vim
@@ -0,0 +1,9 @@
+" Author: Ben Reedy <https://github.com/breed808>
+" Description: staticcheck for Go files
+
+call ale#linter#Define('go', {
+\ 'name': 'staticcheck',
+\ 'executable': 'staticcheck',
+\ 'command': 'staticcheck %t',
+\ 'callback': 'ale#handlers#HandleUnixFormatAsWarning',
+\})