mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-21 19:51:17 +08:00
Show problems from other files for gobuild and gometalinter
* Added filename keys to gobuild and gometalinter * Removed skipping files not in current package * Removed `--include` for gometalinter * Fixed the tests
This commit is contained in:
@@ -22,7 +22,6 @@ Execute(The gometalinter callback should return the right defaults):
|
||||
\ ale_linters#go#gometalinter#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ ale#Escape('gometalinter')
|
||||
\ . ' --include=' . ale#Escape('^' . ale#util#EscapePCRE(expand('%')))
|
||||
\ . ' ' . ale#Escape(getcwd()),
|
||||
\ ale_linters#go#gometalinter#GetCommand(bufnr(''))
|
||||
|
||||
@@ -34,7 +33,6 @@ Execute(The gometalinter callback should use a configured executable):
|
||||
\ ale_linters#go#gometalinter#GetExecutable(bufnr(''))
|
||||
AssertEqual
|
||||
\ ale#Escape('something else')
|
||||
\ . ' --include=' . ale#Escape('^' . ale#util#EscapePCRE(expand('%')))
|
||||
\ . ' ' . ale#Escape(getcwd()),
|
||||
\ ale_linters#go#gometalinter#GetCommand(bufnr(''))
|
||||
|
||||
@@ -43,7 +41,6 @@ Execute(The gometalinter callback should use configured options):
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('gometalinter')
|
||||
\ . ' --include=' . ale#Escape('^' . ale#util#EscapePCRE(expand('%')))
|
||||
\ . ' --foobar'
|
||||
\ . ' ' . ale#Escape(getcwd()),
|
||||
\ ale_linters#go#gometalinter#GetCommand(bufnr(''))
|
||||
|
||||
@@ -28,7 +28,7 @@ Execute (The gobuild handler should handle names with spaces):
|
||||
\ ]), 'v:val[1:4]')
|
||||
|
||||
Execute (The gobuild handler should handle relative paths correctly):
|
||||
silent file! /foo/bar/baz.go
|
||||
call ale#test#SetFilename('app/test.go')
|
||||
|
||||
AssertEqual
|
||||
\ [
|
||||
@@ -37,8 +37,9 @@ Execute (The gobuild handler should handle relative paths correctly):
|
||||
\ 'col': 0,
|
||||
\ 'text': 'missing argument for Printf("%s"): format reads arg 2, have only 1 args',
|
||||
\ 'type': 'E',
|
||||
\ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#go#gobuild#Handler(bufnr(''), [
|
||||
\ 'baz.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args',
|
||||
\ 'test.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args',
|
||||
\ ])
|
||||
|
||||
@@ -30,7 +30,7 @@ Execute (The gometalinter handler should handle names with spaces):
|
||||
\ ]), 'v:val[1:5]')
|
||||
|
||||
Execute (The gometalinter handler should handle relative paths correctly):
|
||||
silent file /foo/bar/baz.go
|
||||
call ale#test#SetFilename('app/test.go')
|
||||
|
||||
AssertEqual
|
||||
\ [
|
||||
@@ -39,15 +39,17 @@ Execute (The gometalinter handler should handle relative paths correctly):
|
||||
\ 'col': 3,
|
||||
\ 'text': 'expected ''package'', found ''IDENT'' gibberish (staticcheck)',
|
||||
\ 'type': 'W',
|
||||
\ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
|
||||
\ },
|
||||
\ {
|
||||
\ 'lnum': 37,
|
||||
\ 'col': 5,
|
||||
\ 'text': 'expected ''package'', found ''IDENT'' gibberish (golint)',
|
||||
\ 'type': 'E',
|
||||
\ 'filename': ale#path#Winify(expand('%:p:h') . '/test.go'),
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#go#gometalinter#Handler(bufnr(''), [
|
||||
\ 'baz.go:12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
|
||||
\ 'baz.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
|
||||
\ 'test.go:12:3:warning: expected ''package'', found ''IDENT'' gibberish (staticcheck)',
|
||||
\ 'test.go:37:5:error: expected ''package'', found ''IDENT'' gibberish (golint)',
|
||||
\ ])
|
||||
|
||||
Reference in New Issue
Block a user