mirror of
https://github.com/dense-analysis/ale
synced 2024-12-26 08:02:25 +00:00
20 lines
631 B
Plaintext
20 lines
631 B
Plaintext
Before:
|
|
Save g:ale_go_go_executable
|
|
Save g:ale_go_govet_options
|
|
call ale#assert#SetUpLinterTest('go', 'govet')
|
|
|
|
After:
|
|
Restore
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(The default command should be correct):
|
|
AssertLinter 'go', ale#path#CdString(expand('%:p:h')) . ' go vet .'
|
|
|
|
Execute(Extra options should be supported):
|
|
let g:ale_go_govet_options = '--foo-bar'
|
|
AssertLinter 'go', ale#path#CdString(expand('%:p:h')) . ' go vet --foo-bar .'
|
|
|
|
Execute(The executable should be configurable):
|
|
let g:ale_go_go_executable = 'foobar'
|
|
AssertLinter 'foobar', ale#path#CdString(expand('%:p:h')) . ' foobar vet .'
|