summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/dhall_lint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/fixers/dhall_lint.vim')
-rw-r--r--autoload/ale/fixers/dhall_lint.vim7
1 files changed, 2 insertions, 5 deletions
diff --git a/autoload/ale/fixers/dhall_lint.vim b/autoload/ale/fixers/dhall_lint.vim
index 18fe9788..149a6581 100644
--- a/autoload/ale/fixers/dhall_lint.vim
+++ b/autoload/ale/fixers/dhall_lint.vim
@@ -3,12 +3,9 @@
function! ale#fixers#dhall_lint#Fix(buffer) abort
let l:executable = ale#dhall#GetExecutableWithOptions(a:buffer)
- let l:command = l:executable
- \ . ' lint'
- \ . ' --inplace %t'
return {
- \ 'command': l:command,
- \ 'read_temporary_file': 1,
+ \ 'command': l:executable
+ \ . ' lint'
\}
endfunction