diff options
author | Nathan Herald <me@nathanherald.com> | 2020-07-29 18:23:00 +0200 |
---|---|---|
committer | Nathan Herald <me@nathanherald.com> | 2020-11-17 17:12:04 +0100 |
commit | b74827de99e842dc7698d8d6274486550d90f05a (patch) | |
tree | 50bc63b3576ff96722b229dba154272077872ce8 /autoload | |
parent | 48fe0dd4f629bb1282277ba8a6757a84c13a4dda (diff) | |
download | ale-b74827de99e842dc7698d8d6274486550d90f05a.zip |
Look for node packages in .yarn/sdks as well
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/handlers/eslint.vim | 1 |
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') ? '\' : '/' |