mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-29 06:12:20 +08:00
Add buf linter and fixer (#4128)
* Add buf lint to linters * Add buf format to fixers * Fix test/linter/test_buf_lint.vader * Fix test/fixers/test_buf_format_fixer_callback.vader * Simplify test/test-files/proto/testfile.proto * Add buf-lint alias and rename linter
This commit is contained in:
21
test/fixers/test_buf_format_fixer_callback.vader
Normal file
21
test/fixers/test_buf_format_fixer_callback.vader
Normal file
@@ -0,0 +1,21 @@
|
||||
Before:
|
||||
Save g:ale_proto_buf_format_executable
|
||||
|
||||
" Use an invalid global executable, so we don't match it.
|
||||
let g:ale_proto_buf_format_executable = 'xxxinvalid'
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test/fixers')
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#test#RestoreDirectory()
|
||||
|
||||
Execute(The buf-format callback should return the correct default values):
|
||||
call ale#test#SetFilename('../test-files/proto/testfile.proto')
|
||||
|
||||
AssertEqual
|
||||
\ {
|
||||
\ 'command': ale#Escape('xxxinvalid') . ' format %t',
|
||||
\ },
|
||||
\ ale#fixers#buf_format#Fix(bufnr(''))
|
||||
Reference in New Issue
Block a user