diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-20 13:37:21 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-20 13:37:21 +0100 |
commit | 4c6b58f70c378434173991ad5edf23e9bc972bc2 (patch) | |
tree | f4a76add2e9efdcc56a3d7c04e1bab6570e72295 /ale_linters | |
parent | d646ebda72cffdec06fbef81cbf72d04806bef42 (diff) | |
download | ale-4c6b58f70c378434173991ad5edf23e9bc972bc2.zip |
Fix some indentation
Diffstat (limited to 'ale_linters')
-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', \}) |