Fix #2054 - Make golint configurable

This commit is contained in:
w0rp
2018-11-11 09:42:57 +00:00
parent b96105bebb
commit d1d5292178
4 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
Before:
call ale#assert#SetUpLinterTest('go', 'golint')
After:
call ale#assert#TearDownLinterTest()
Execute(The default golint command should be correct):
AssertLinter 'golint', ale#Escape('golint') . ' %t'
Execute(The golint executable should be configurable):
let b:ale_go_golint_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar') . ' %t'
Execute(The golint options should be configurable):
let b:ale_go_golint_options = '--foo'
AssertLinter 'golint', ale#Escape('golint') . ' --foo %t'