purs-tidy fix (#3867)

* purs-tidy

* Fixup for purs-tidy
This commit is contained in:
toastal
2021-08-09 11:42:19 +00:00
committed by GitHub
parent 836125391a
commit 9264ffda23
2 changed files with 2 additions and 5 deletions

View File

@@ -18,9 +18,7 @@ function! ale#fixers#purs_tidy#Fix(buffer) abort
return { return {
\ 'command': ale#Escape(l:executable) \ 'command': ale#Escape(l:executable)
\ . ' format'
\ . ale#Pad(l:options) \ . ale#Pad(l:options)
\ . ' %s',
\ 'read_temporary_file': 0,
\} \}
endfunction endfunction

View File

@@ -15,7 +15,6 @@ Execute(The purs-tidy callback should return the correct custom options):
AssertFixer AssertFixer
\ { \ {
\ 'command': ale#Escape('odd-purs-tidy') \ 'command': ale#Escape('odd-purs-tidy')
\ . ' format'
\ . ' --indent 3' \ . ' --indent 3'
\ . ' %s',
\ 'read_temporary_file': 0,
\ } \ }