1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:20:04 +08:00
SpaceVim/bundle/ale/ale_linters/graphql/gqlint.vim

11 lines
303 B
VimL
Raw Normal View History

2021-02-10 10:31:34 +08:00
" Author: Michiel Westerbeek <happylinks@gmail.com>
" Description: Linter for GraphQL Schemas
call ale#linter#Define('graphql', {
\ 'name': 'gqlint',
\ 'executable': 'gqlint',
2023-06-09 12:10:45 +08:00
\ 'cwd': '%s:h',
\ 'command': 'gqlint --reporter=simple %t',
2021-02-10 10:31:34 +08:00
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})