mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 04:34:25 +08:00
Some checks failed
CI / build_image (push) Has been cancelled
CI / test_ale (--linters-only) (push) Has been cancelled
CI / test_ale (--lua-only) (push) Has been cancelled
CI / test_ale (--neovim-07-only) (push) Has been cancelled
CI / test_ale (--neovim-08-only) (push) Has been cancelled
CI / test_ale (--vim-80-only) (push) Has been cancelled
CI / test_ale (--vim-90-only) (push) Has been cancelled
18 lines
355 B
Plaintext
18 lines
355 B
Plaintext
Before:
|
|
call ale#assert#SetUpFixerTest('markdown', 'markdownlint')
|
|
|
|
After:
|
|
call ale#assert#TearDownFixerTest()
|
|
|
|
Execute:
|
|
AssertFixer {
|
|
\ 'command': ale#Escape('markdownlint') . ' --fix',
|
|
\}
|
|
|
|
Execute:
|
|
let g:ale_markdownlint_executable = 'custom_markdownlint'
|
|
|
|
AssertFixer {
|
|
\ 'command': ale#Escape('custom_markdownlint') . ' --fix',
|
|
\}
|