mirror of https://github.com/dense-analysis/ale
Add support for `lua-format` fixer. (#3804)
This commit is contained in:
parent
8b73d98baf
commit
1e9f40ff8d
|
@ -441,6 +441,11 @@ let s:default_registry = {
|
||||||
\ 'suggested_filetypes': ['html', 'htmldjango'],
|
\ 'suggested_filetypes': ['html', 'htmldjango'],
|
||||||
\ 'description': 'Fix HTML files with html-beautify.',
|
\ 'description': 'Fix HTML files with html-beautify.',
|
||||||
\ },
|
\ },
|
||||||
|
\ 'lua-format': {
|
||||||
|
\ 'function': 'ale#fixers#lua_format#Fix',
|
||||||
|
\ 'suggested_filetypes': ['lua'],
|
||||||
|
\ 'description': 'Fix Lua files with lua-format.',
|
||||||
|
\ },
|
||||||
\ 'luafmt': {
|
\ 'luafmt': {
|
||||||
\ 'function': 'ale#fixers#luafmt#Fix',
|
\ 'function': 'ale#fixers#luafmt#Fix',
|
||||||
\ 'suggested_filetypes': ['lua'],
|
\ 'suggested_filetypes': ['lua'],
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
" Author: Mathias Jean Johansen <mathias@mjj.io>
|
||||||
|
" Description: Integration of LuaFormatter with ALE.
|
||||||
|
|
||||||
|
call ale#Set('lua_lua_format_executable', 'lua-format')
|
||||||
|
call ale#Set('lua_lua_format_options', '')
|
||||||
|
|
||||||
|
function! ale#fixers#lua_format#Fix(buffer) abort
|
||||||
|
let l:executable = ale#Var(a:buffer, 'lua_lua_format_executable')
|
||||||
|
let l:options = ale#Var(a:buffer, 'lua_lua_format_options')
|
||||||
|
|
||||||
|
return {
|
||||||
|
\ 'command': ale#Escape(l:executable)
|
||||||
|
\ . ale#Pad(l:options)
|
||||||
|
\ . ' -i',
|
||||||
|
\}
|
||||||
|
endfunction
|
|
@ -1,6 +1,24 @@
|
||||||
===============================================================================
|
===============================================================================
|
||||||
ALE Lua Integration *ale-lua-options*
|
ALE Lua Integration *ale-lua-options*
|
||||||
|
|
||||||
|
===============================================================================
|
||||||
|
lua-format *ale-lua-lua-format*
|
||||||
|
|
||||||
|
g:ale_lua_lua_format_executable *g:ale_lua_lua_format_executable*
|
||||||
|
*b:ale_lua_lua_format_executable*
|
||||||
|
Type: |String|
|
||||||
|
Default: `'lua-format'`
|
||||||
|
|
||||||
|
This variable can be changed to change the path to lua-format.
|
||||||
|
|
||||||
|
g:ale_lua_lua_format_options *g:ale_lua_lua_format_options*
|
||||||
|
*b:ale_lua_lua_format_options*
|
||||||
|
Type: |String|
|
||||||
|
Default: `''`
|
||||||
|
|
||||||
|
This variable can be set to pass additional options to lua-format.
|
||||||
|
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
luac *ale-lua-luac*
|
luac *ale-lua-luac*
|
||||||
|
|
||||||
|
|
|
@ -285,6 +285,7 @@ Notes:
|
||||||
* LLVM
|
* LLVM
|
||||||
* `llc`
|
* `llc`
|
||||||
* Lua
|
* Lua
|
||||||
|
* `lua-format`
|
||||||
* `luac`
|
* `luac`
|
||||||
* `luacheck`
|
* `luacheck`
|
||||||
* `luafmt`
|
* `luafmt`
|
||||||
|
|
|
@ -2840,6 +2840,7 @@ documented in additional help files.
|
||||||
llvm....................................|ale-llvm-options|
|
llvm....................................|ale-llvm-options|
|
||||||
llc...................................|ale-llvm-llc|
|
llc...................................|ale-llvm-llc|
|
||||||
lua.....................................|ale-lua-options|
|
lua.....................................|ale-lua-options|
|
||||||
|
lua-format............................|ale-lua-lua-format|
|
||||||
luac..................................|ale-lua-luac|
|
luac..................................|ale-lua-luac|
|
||||||
luacheck..............................|ale-lua-luacheck|
|
luacheck..............................|ale-lua-luacheck|
|
||||||
luafmt................................|ale-lua-luafmt|
|
luafmt................................|ale-lua-luafmt|
|
||||||
|
|
|
@ -294,6 +294,7 @@ formatting.
|
||||||
* LLVM
|
* LLVM
|
||||||
* [llc](https://llvm.org/docs/CommandGuide/llc.html)
|
* [llc](https://llvm.org/docs/CommandGuide/llc.html)
|
||||||
* Lua
|
* Lua
|
||||||
|
* [lua-format](https://github.com/Koihik/LuaFormatter)
|
||||||
* [luac](https://www.lua.org/manual/5.1/luac.html)
|
* [luac](https://www.lua.org/manual/5.1/luac.html)
|
||||||
* [luacheck](https://github.com/mpeterv/luacheck)
|
* [luacheck](https://github.com/mpeterv/luacheck)
|
||||||
* [luafmt](https://github.com/trixnz/lua-fmt)
|
* [luafmt](https://github.com/trixnz/lua-fmt)
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
Before:
|
||||||
|
Save g:ale_lua_lua_format_executable
|
||||||
|
Save g:ale_lua_lua_format_options
|
||||||
|
|
||||||
|
" Use an invalid global executable, so we don't match it.
|
||||||
|
let g:ale_lua_lua_format_executable = 'xxxinvalid'
|
||||||
|
let g:ale_lua_lua_format_options = ''
|
||||||
|
|
||||||
|
call ale#test#SetDirectory('/testplugin/test/fixers')
|
||||||
|
|
||||||
|
After:
|
||||||
|
Restore
|
||||||
|
|
||||||
|
call ale#test#RestoreDirectory()
|
||||||
|
|
||||||
|
Execute(The lua_format callback should return the correct default values):
|
||||||
|
call ale#test#SetFilename('../test-files/lua/testfile.lua')
|
||||||
|
|
||||||
|
AssertEqual
|
||||||
|
\ {
|
||||||
|
\ 'command': ale#Escape('xxxinvalid') . ' -i',
|
||||||
|
\ },
|
||||||
|
\ ale#fixers#lua_format#Fix(bufnr(''))
|
||||||
|
|
||||||
|
Execute(The lua_format callback should include custom lua_format options):
|
||||||
|
let g:ale_lua_lua_format_options = "--no-chop-down-table"
|
||||||
|
call ale#test#SetFilename('../test-files/lua/testfile.lua')
|
||||||
|
|
||||||
|
AssertEqual
|
||||||
|
\ {
|
||||||
|
\ 'command': ale#Escape('xxxinvalid')
|
||||||
|
\ . ' ' . g:ale_lua_lua_format_options
|
||||||
|
\ . ' -i',
|
||||||
|
\ },
|
||||||
|
\ ale#fixers#lua_format#Fix(bufnr(''))
|
Loading…
Reference in New Issue