mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-16 01:07:06 +08:00
Fix 4913 - use JSON output for golangci-lint instead of regexps. (#4917)
Some checks are pending
CI / build_image (push) Waiting to run
CI / test_ale (--linters-only) (push) Blocked by required conditions
CI / test_ale (--neovim-06-only) (push) Blocked by required conditions
CI / test_ale (--neovim-08-only) (push) Blocked by required conditions
CI / test_ale (--vim-80-only) (push) Blocked by required conditions
CI / test_ale (--vim-90-only) (push) Blocked by required conditions
Some checks are pending
CI / build_image (push) Waiting to run
CI / test_ale (--linters-only) (push) Blocked by required conditions
CI / test_ale (--neovim-06-only) (push) Blocked by required conditions
CI / test_ale (--neovim-08-only) (push) Blocked by required conditions
CI / test_ale (--vim-80-only) (push) Blocked by required conditions
CI / test_ale (--vim-90-only) (push) Blocked by required conditions
* Fix 4913 - use JSON output for golangci-lint instead of regexps. * Check for empty array
This commit is contained in:
@@ -14,14 +14,14 @@ After:
|
||||
Execute(The golangci-lint defaults should be correct):
|
||||
AssertLinterCwd '%s:h',
|
||||
AssertLinter 'golangci-lint',
|
||||
\ ale#Escape('golangci-lint') . ' run '
|
||||
\ ale#Escape('golangci-lint') . ' run --out-format=json --show-stats=0'
|
||||
|
||||
Execute(The golangci-lint callback should use a configured executable):
|
||||
let b:ale_go_golangci_lint_executable = 'something else'
|
||||
|
||||
AssertLinter 'something else',
|
||||
\ ale#Escape('something else')
|
||||
\ . ' run '
|
||||
\ . ' run --out-format=json --show-stats=0'
|
||||
|
||||
Execute(The golangci-lint callback should use configured options):
|
||||
let b:ale_go_golangci_lint_options = '--foobar'
|
||||
@@ -29,7 +29,9 @@ Execute(The golangci-lint callback should use configured options):
|
||||
AssertLinter 'golangci-lint',
|
||||
\ ale#Escape('golangci-lint')
|
||||
\ . ' run '
|
||||
\ . '--foobar'
|
||||
\ . '--foobar '
|
||||
\ . '--out-format=json '
|
||||
\ . '--show-stats=0'
|
||||
|
||||
Execute(The golangci-lint callback should support environment variables):
|
||||
let b:ale_go_go111module = 'on'
|
||||
@@ -37,11 +39,13 @@ Execute(The golangci-lint callback should support environment variables):
|
||||
AssertLinter 'golangci-lint',
|
||||
\ ale#Env('GO111MODULE', 'on')
|
||||
\ . ale#Escape('golangci-lint')
|
||||
\ . ' run '
|
||||
\ . ' run '
|
||||
\ . '--out-format=json '
|
||||
\ . '--show-stats=0'
|
||||
|
||||
Execute(The golangci-lint `lint_package` option should use the correct command):
|
||||
let b:ale_go_golangci_lint_package = 0
|
||||
AssertLinter 'golangci-lint',
|
||||
\ ale#Escape('golangci-lint')
|
||||
\ . ' run ' . ale#Escape(expand('%' . ':t'))
|
||||
\ . ' '
|
||||
\ . ' --out-format=json --show-stats=0'
|
||||
|
||||
Reference in New Issue
Block a user