mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
* Add support for verible: language server + fixer * verible: add default flag, rules support for verible-ls
17 lines
660 B
Plaintext
17 lines
660 B
Plaintext
Before:
|
|
call ale#assert#SetUpFixerTest('verilog', 'verible_format')
|
|
|
|
After:
|
|
call ale#assert#TearDownFixerTest()
|
|
|
|
Execute(The verible format callback should return the correct default values):
|
|
AssertFixer {'command': ale#Escape('verible-verilog-format') .' -'}
|
|
|
|
Execute(The verible format callback should allow a custom executable):
|
|
let g:ale_verilog_verible_format_executable = 'foo/bar'
|
|
AssertFixer {'command': ale#Escape('foo/bar') . ' -'}
|
|
|
|
Execute(The verible format callback should allow custom options):
|
|
let g:ale_verilog_verible_format_options = '--foo --bar'
|
|
AssertFixer {'command': ale#Escape('verible-verilog-format') .' --foo --bar -'}
|