summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/jq.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/fixers/jq.vim')
-rw-r--r--autoload/ale/fixers/jq.vim20
1 files changed, 10 insertions, 10 deletions
diff --git a/autoload/ale/fixers/jq.vim b/autoload/ale/fixers/jq.vim
index 1b743e49..cd9b9138 100644
--- a/autoload/ale/fixers/jq.vim
+++ b/autoload/ale/fixers/jq.vim
@@ -7,16 +7,16 @@ function! ale#fixers#jq#GetExecutable(buffer) abort
endfunction
function! ale#fixers#jq#Fix(buffer) abort
- let l:options = ale#Var(a:buffer, 'json_jq_options')
- let l:filters = ale#Var(a:buffer, 'json_jq_filters')
+ let l:options = ale#Var(a:buffer, 'json_jq_options')
+ let l:filters = ale#Var(a:buffer, 'json_jq_filters')
- if empty(l:filters)
- return 0
- endif
+ if empty(l:filters)
+ return 0
+ endif
- return {
- \ 'command': ale#Escape(ale#fixers#jq#GetExecutable(a:buffer))
- \ . ' ' . l:filters . ' '
- \ . l:options,
- \}
+ return {
+ \ 'command': ale#Escape(ale#fixers#jq#GetExecutable(a:buffer))
+ \ . ' ' . l:filters . ' '
+ \ . l:options,
+ \}
endfunction