remove --enable-all from golangci-lint options (#4488)

* remove --enable-all from default golangci-lint options

* update golangci-lint options documentation

* update tests to use empty golangci-lint options
This commit is contained in:
Veselin Ivanov
2023-04-02 11:09:58 +02:00
committed by GitHub
parent 41e12fd640
commit b0ba31f88e
3 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ Execute(The golangci-lint defaults should be correct):
AssertLinter 'golangci-lint',
\ ale#Escape('golangci-lint')
\ . ' run ' . ale#Escape(expand('%' . ':t'))
\ . ' --enable-all'
\ . ' '
Execute(The golangci-lint callback should use a configured executable):
let b:ale_go_golangci_lint_executable = 'something else'
@@ -24,7 +24,7 @@ Execute(The golangci-lint callback should use a configured executable):
AssertLinter 'something else',
\ ale#Escape('something else')
\ . ' run ' . ale#Escape(expand('%' . ':t'))
\ . ' --enable-all'
\ . ' '
Execute(The golangci-lint callback should use configured options):
let b:ale_go_golangci_lint_options = '--foobar'
@@ -41,10 +41,10 @@ Execute(The golangci-lint callback should support environment variables):
\ ale#Env('GO111MODULE', 'on')
\ . ale#Escape('golangci-lint')
\ . ' run ' . ale#Escape(expand('%' . ':t'))
\ . ' --enable-all'
\ . ' '
Execute(The golangci-lint `lint_package` option should use the correct command):
let b:ale_go_golangci_lint_package = 1
AssertLinter 'golangci-lint',
\ ale#Escape('golangci-lint') . ' run --enable-all'
\ ale#Escape('golangci-lint') . ' run '