Added new linter for GraphQL: gqlint (#863)

* Added new linter for GraphQL: GQLint

* added help-files
This commit is contained in:
Michiel Westerbeek
2017-08-20 14:36:46 +02:00
committed by w0rp
parent c7193e775e
commit d646ebda72
4 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
" Author: Michiel Westerbeek <happylinks@gmail.com>
" Description: Linter for GraphQL Schemas
call ale#linter#Define('graphql', {
\ 'name': 'gqlint',
\ 'executable': 'gqlint',
\ 'command': 'gqlint --reporter=simple %t',
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})