diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-06-08 23:05:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-08 23:05:35 +0100 |
commit | 5826b4927ca7eb81c717f22a3b6051dd6d8f6c51 (patch) | |
tree | 00faa105f84e3cc4e403e0164e8e6527f48e939f /test/command_callback | |
parent | 6eb68b4507633166d192e03f51b9416d15400028 (diff) | |
parent | 7d4a83ecd4261deabdc18872faabc10027d50fbd (diff) | |
download | ale-5826b4927ca7eb81c717f22a3b6051dd6d8f6c51.zip |
Merge pull request #2551 from laino/eslint-json
Use JSON output for ESLint and fix tsserver column
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_xo_command_callback.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/command_callback/test_xo_command_callback.vader b/test/command_callback/test_xo_command_callback.vader index 12de595d..65cb4f8a 100644 --- a/test/command_callback/test_xo_command_callback.vader +++ b/test/command_callback/test_xo_command_callback.vader @@ -7,14 +7,14 @@ After: call ale#assert#TearDownLinterTest() Execute(The XO executable should be called): - AssertLinter 'xo', ale#Escape('xo') . ' --reporter unix --stdin --stdin-filename %s' + AssertLinter 'xo', ale#Escape('xo') . ' --reporter json --stdin --stdin-filename %s' Execute(The XO executable should be configurable): let b:ale_typescript_xo_executable = 'foobar' - AssertLinter 'foobar', ale#Escape('foobar') . ' --reporter unix --stdin --stdin-filename %s' + AssertLinter 'foobar', ale#Escape('foobar') . ' --reporter json --stdin --stdin-filename %s' Execute(The XO options should be configurable): let b:ale_typescript_xo_options = '--wat' - AssertLinter 'xo', ale#Escape('xo') . ' --wat --reporter unix --stdin --stdin-filename %s' + AssertLinter 'xo', ale#Escape('xo') . ' --wat --reporter json --stdin --stdin-filename %s' |