summaryrefslogtreecommitdiff
path: root/ale_linters/graphql/gqlint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/graphql/gqlint.vim')
-rw-r--r--ale_linters/graphql/gqlint.vim9
1 files changed, 2 insertions, 7 deletions
diff --git a/ale_linters/graphql/gqlint.vim b/ale_linters/graphql/gqlint.vim
index d5029de1..6f1ca54a 100644
--- a/ale_linters/graphql/gqlint.vim
+++ b/ale_linters/graphql/gqlint.vim
@@ -1,15 +1,10 @@
" Author: Michiel Westerbeek <happylinks@gmail.com>
" Description: Linter for GraphQL Schemas
-function! ale_linters#graphql#gqlint#GetCommand(buffer) abort
- return ale#path#BufferCdString(a:buffer)
- \ . 'gqlint'
- \ . ' --reporter=simple %t'
-endfunction
-
call ale#linter#Define('graphql', {
\ 'name': 'gqlint',
\ 'executable': 'gqlint',
-\ 'command': function('ale_linters#graphql#gqlint#GetCommand'),
+\ 'cwd': '%s:h',
+\ 'command': 'gqlint --reporter=simple %t',
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})