summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2020-11-21 15:33:55 +0000
committerGitHub <noreply@github.com>2020-11-21 15:33:55 +0000
commit9f2215d69b7c178e4b873d0a7f404962f61e1b77 (patch)
treeb88e8d69b81061e75c556fd747731866bfe5a8a1 /autoload
parentd0b5909fd8cb96fa65363af44d02eb0038c6112c (diff)
parentb74827de99e842dc7698d8d6274486550d90f05a (diff)
downloadale-9f2215d69b7c178e4b873d0a7f404962f61e1b77.zip
Merge pull request #3435 from myobie/yarn-berry
For linters/tserver and handlers/eslint: look for node packages in .yarn/sdks as well
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/handlers/eslint.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/ale/handlers/eslint.vim b/autoload/ale/handlers/eslint.vim
index e37d6902..b8610612 100644
--- a/autoload/ale/handlers/eslint.vim
+++ b/autoload/ale/handlers/eslint.vim
@@ -5,6 +5,7 @@ let s:executables = [
\ 'node_modules/.bin/eslint_d',
\ 'node_modules/eslint/bin/eslint.js',
\ 'node_modules/.bin/eslint',
+\ '.yarn/sdks/eslint/bin/eslint',
\]
let s:sep = has('win32') ? '\' : '/'