mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
#576 Run the eslint.js file created by React with node on Windows
This commit is contained in:
@@ -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(''))
|
||||
|
||||
Reference in New Issue
Block a user