install.fairie/dotfiles/.vim/plugged/ale/test/linter/test_markdown_vale.vader
Git E2E Dev Test Username e149692cc9 git subrepo clone https://github.com/dense-analysis/ale.git ./dotfiles/.vim/plugged/ale
subrepo:
  subdir:   "dotfiles/.vim/plugged/ale"
  merged:   "e4b205440"
upstream:
  origin:   "https://github.com/dense-analysis/ale.git"
  branch:   "master"
  commit:   "e4b205440"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-10-18 10:37:09 -04:00

32 lines
929 B
Text

Before:
call ale#assert#SetUpLinterTest('markdown', 'vale')
call ale#test#SetFilename('dummy.md')
let g:ale_markdown_vale_executable = 'vale'
let g:ale_markdown_vale_input_file = '%t'
let g:ale_markdown_vale_options = ''
After:
call ale#assert#TearDownLinterTest()
Execute(Executable should default to vale):
AssertLinter 'vale', ale#Escape('vale')
\ . ' --output=JSON %t'
Execute(Should be able to set a custom executable):
let g:ale_markdown_vale_executable = 'bin/vale'
AssertLinter 'bin/vale' , ale#Escape('bin/vale')
\ . ' --output=JSON %t'
Execute(Should be able to set custom options):
let g:ale_markdown_vale_options = '--foo --bar'
AssertLinter 'vale', ale#Escape('vale')
\ . ' --output=JSON --foo --bar %t'
Execute(Should be able to set a custom input file):
let g:ale_markdown_vale_input_file = '%s'
AssertLinter 'vale', ale#Escape('vale')
\ . ' --output=JSON %s'