diff options
author | Nils Kuhnhenn <lain@volafile.org> | 2019-06-02 09:35:31 +0200 |
---|---|---|
committer | Nils Kuhnhenn <lain@volafile.org> | 2019-06-02 14:39:03 +0200 |
commit | 79d1b99067878bbec129cfd29a7c9587c276dec6 (patch) | |
tree | 0e4622fe0d7a8d71d7018840c86ee0aeb2aee662 /test/command_callback | |
parent | 135de34d224a6dd5a7a16b44e84e603a6609b34f (diff) | |
download | ale-79d1b99067878bbec129cfd29a7c9587c276dec6.zip |
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' |