diff options
author | w0rp <w0rp@users.noreply.github.com> | 2020-01-02 14:53:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 14:53:06 +0000 |
commit | 4afbf2f25dc0ce86b118261b0cfb904c80ae6ba0 (patch) | |
tree | 23f8fb96d7fc1c05050f814190eebab8f3fd2a73 /ale_linters/graphql/eslint.vim | |
parent | 72d2c55479c29e550c27f20e903c882dcc68639b (diff) | |
parent | 31715ff22768a87be2b8db592be5e7eb499ced30 (diff) | |
download | ale-4afbf2f25dc0ce86b118261b0cfb904c80ae6ba0.zip |
Merge pull request #2908 from af/patch-1
Fix for incorrect eslint output parsing for graphql files
Diffstat (limited to 'ale_linters/graphql/eslint.vim')
-rw-r--r-- | ale_linters/graphql/eslint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/graphql/eslint.vim b/ale_linters/graphql/eslint.vim index 654b8c17..aed1a371 100644 --- a/ale_linters/graphql/eslint.vim +++ b/ale_linters/graphql/eslint.vim @@ -5,5 +5,5 @@ call ale#linter#Define('graphql', { \ 'name': 'eslint', \ 'executable': function('ale#handlers#eslint#GetExecutable'), \ 'command': function('ale#handlers#eslint#GetCommand'), -\ 'callback': 'ale#handlers#eslint#Handle', +\ 'callback': 'ale#handlers#eslint#HandleJSON', \}) |