From 3cdd057b11c224316af4d889783ea9c2d12b27f5 Mon Sep 17 00:00:00 2001 From: w0rp Date: Thu, 6 Oct 2016 13:42:52 +0100 Subject: Add support for changing the eslint executable. --- ale_linters/javascript/eslint.vim | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'ale_linters/javascript/eslint.vim') diff --git a/ale_linters/javascript/eslint.vim b/ale_linters/javascript/eslint.vim index 28e61ea9..94d14e6b 100644 --- a/ale_linters/javascript/eslint.vim +++ b/ale_linters/javascript/eslint.vim @@ -7,6 +7,9 @@ endif let g:loaded_ale_linters_javascript_eslint = 1 +let g:ale_javascript_eslint_executable = +\ get(g:, 'ale_javascript_eslint_executable', 'eslint') + function! ale_linters#javascript#eslint#Handle(buffer, lines) " Matches patterns line the following: " @@ -48,14 +51,14 @@ endfunction call ALEAddLinter('javascript', { \ 'name': 'eslint', -\ 'executable': 'eslint', -\ 'command': 'eslint -f unix --stdin --stdin-filename %s', +\ 'executable': g:ale_javascript_eslint_executable, +\ 'command': g:ale_javascript_eslint_executable . ' -f unix --stdin --stdin-filename %s', \ 'callback': 'ale_linters#javascript#eslint#Handle', \}) call ALEAddLinter('javascript.jsx', { \ 'name': 'eslint', -\ 'executable': 'eslint', -\ 'command': 'eslint -f unix --stdin --stdin-filename %s', +\ 'executable': g:ale_javascript_eslint_executable, +\ 'command': g:ale_javascript_eslint_executable . ' -f unix --stdin --stdin-filename %s', \ 'callback': 'ale_linters#javascript#eslint#Handle', \}) -- cgit v1.2.3