diff options
Diffstat (limited to 'ale_linters/graphql/gqlint.vim')
-rw-r--r-- | ale_linters/graphql/gqlint.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ale_linters/graphql/gqlint.vim b/ale_linters/graphql/gqlint.vim index 0b70abb0..882cc697 100644 --- a/ale_linters/graphql/gqlint.vim +++ b/ale_linters/graphql/gqlint.vim @@ -2,8 +2,8 @@ " Description: Linter for GraphQL Schemas call ale#linter#Define('graphql', { - \ 'name': 'gqlint', - \ 'executable': 'gqlint', - \ 'command': 'gqlint --reporter=simple %t', - \ 'callback': 'ale#handlers#unix#HandleAsWarning', +\ 'name': 'gqlint', +\ 'executable': 'gqlint', +\ 'command': 'gqlint --reporter=simple %t', +\ 'callback': 'ale#handlers#unix#HandleAsWarning', \}) |