mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-19 18:51:14 +08:00
* Revert "Add biome support for javascript (#4701)"
This reverts commit 8922478a83.
* Add support for biome
11 lines
361 B
VimL
11 lines
361 B
VimL
" Author: Filip Gospodinov <f@gospodinov.ch>
|
|
" Description: biome for JavaScript files
|
|
|
|
call ale#linter#Define('javascript', {
|
|
\ 'name': 'biome',
|
|
\ 'lsp': 'stdio',
|
|
\ 'executable': function('ale#handlers#biome#GetExecutable'),
|
|
\ 'command': function('ale#handlers#biome#GetCommand'),
|
|
\ 'project_root': function('ale#handlers#biome#GetProjectRoot'),
|
|
\})
|