diff options
-rw-r--r-- | autoload/ale/fixers/purs_tidy.vim | 4 | ||||
-rw-r--r-- | test/fixers/test_purs_tidy_fixer_callback.vader | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/autoload/ale/fixers/purs_tidy.vim b/autoload/ale/fixers/purs_tidy.vim index 0183fd73..09fa631b 100644 --- a/autoload/ale/fixers/purs_tidy.vim +++ b/autoload/ale/fixers/purs_tidy.vim @@ -18,9 +18,7 @@ function! ale#fixers#purs_tidy#Fix(buffer) abort return { \ 'command': ale#Escape(l:executable) + \ . ' format' \ . ale#Pad(l:options) - \ . ' %s', - \ 'read_temporary_file': 0, \} endfunction - diff --git a/test/fixers/test_purs_tidy_fixer_callback.vader b/test/fixers/test_purs_tidy_fixer_callback.vader index 7debd434..fdeb3f21 100644 --- a/test/fixers/test_purs_tidy_fixer_callback.vader +++ b/test/fixers/test_purs_tidy_fixer_callback.vader @@ -15,7 +15,6 @@ Execute(The purs-tidy callback should return the correct custom options): AssertFixer \ { \ 'command': ale#Escape('odd-purs-tidy') + \ . ' format' \ . ' --indent 3' - \ . ' %s', - \ 'read_temporary_file': 0, \ } |