mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 20:54:26 +08:00
Allows the user to override $GO111MODULE environment variable through ale options. This gives control over the default behavior of Go module resolution. Golang documentation: https://github.com/golang/go/wiki/Modules#how-to-use-modules Add `ale#Go#EnvString()` function to make it easy to add similar Go environment variables in the future. Use the new `EnvString` function in all available Go tools callbacks & update tests Also add test of linter command callback for `gofmt`
28 lines
870 B
Plaintext
28 lines
870 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 .'
|
|
|
|
Execute(Go environment variables should be supported):
|
|
let b:ale_go_go111module = 'on'
|
|
AssertLinter 'go',
|
|
\ ale#path#CdString(expand('%:p:h')) . ' '
|
|
\ . ale#Env('GO111MODULE', 'on')
|
|
\ . 'go vet .'
|
|
unlet! b:ale_go_go111module
|