#576 Run the eslint.js file created by React with node on Windows

This commit is contained in:
w0rp
2017-05-26 10:02:48 +01:00
parent c89587785b
commit 7fe1119cf1
2 changed files with 26 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ Before:
runtime ale_linters/javascript/eslint.vim
After:
let g:ale_has_override = {}
let g:ale_javascript_eslint_executable = 'eslint'
let g:ale_javascript_eslint_use_global = 0
@@ -63,3 +64,14 @@ Execute(eslint_d should be detected correctly):
\ ale#handlers#eslint#GetExecutable(bufnr(''))
:q
Execute(eslint.js executables should be run with node on Windows):
silent noautocmd new eslint-test-files/react-app/subdir/testfile.js
let g:ale_has_override['win32'] = 1
" We have to execute the file with node.
AssertEqual
\ 'node '''
\ . g:dir . '/eslint-test-files/react-app/node_modules/eslint/bin/eslint.js'
\ . ''' -f unix --stdin --stdin-filename %s',
\ ale_linters#javascript#eslint#GetCommand(bufnr(''))