From e55d07cf6f8eb71e808e53e43ef7c56f8b660b63 Mon Sep 17 00:00:00 2001 From: Jeff Willette Date: Tue, 18 Dec 2018 11:37:31 +0900 Subject: changed gqlint to lint the file on disk - added a cd into the direcotry containing the file in the buffer in order to properly check for a config file - added command_callback tests for graphql --- ale_linters/graphql/gqlint.vim | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ale_linters') diff --git a/ale_linters/graphql/gqlint.vim b/ale_linters/graphql/gqlint.vim index 882cc697..e45bf4c8 100644 --- a/ale_linters/graphql/gqlint.vim +++ b/ale_linters/graphql/gqlint.vim @@ -1,9 +1,15 @@ " Author: Michiel Westerbeek " 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': 'gqlint --reporter=simple %t', +\ 'command_callback': 'ale_linters#graphql#gqlint#GetCommand', \ 'callback': 'ale#handlers#unix#HandleAsWarning', \}) -- cgit v1.2.3