Merge pull request #1897 from LEI/add-sqlfmt-fixer

Add support for sqlfmt
This commit is contained in:
w0rp
2018-09-09 11:55:42 +01:00
committed by GitHub
6 changed files with 73 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
Before:
Save g:ale_sql_sqlfmt_executable
Save g:ale_sql_sqlfmt_options
After:
Restore
Execute(The sqlfmt callback should return the correct default values):
AssertEqual
\ {
\ 'command': ale#Escape('sqlfmt')
\ . ' -w',
\ },
\ ale#fixers#sqlfmt#Fix(bufnr(''))
Execute(The sqlfmt executable and options should be configurable):
let g:ale_sql_sqlfmt_executable = '/path/to/sqlfmt'
let g:ale_sql_sqlfmt_options = '-u'
AssertEqual
\ {
\ 'command': ale#Escape('/path/to/sqlfmt')
\ . ' -w'
\ . ' -u',
\ },
\ ale#fixers#sqlfmt#Fix(bufnr(''))