forked from dense-analysis/ale
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for syntax_tree fixer (dense-analysis#4268)
This is the library that now powers prettier/plugin-ruby but is also stands on its own: https://github.com/ruby-syntax-tree/syntax_tree
- Loading branch information
Showing
7 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
call ale#Set('ruby_syntax_tree_options', '') | ||
call ale#Set('ruby_syntax_tree_executable', 'stree') | ||
|
||
function! ale#fixers#syntax_tree#GetCommand(buffer) abort | ||
let l:executable = ale#Var(a:buffer, 'ruby_syntax_tree_executable') | ||
let l:options = ale#Var(a:buffer, 'ruby_syntax_tree_options') | ||
|
||
return ale#ruby#EscapeExecutable(l:executable, 'stree') | ||
\ . ' write' | ||
\ . (!empty(l:options) ? ' ' . l:options : '') | ||
\ . ' %t' | ||
endfunction | ||
|
||
function! ale#fixers#syntax_tree#Fix(buffer) abort | ||
return { | ||
\ 'command': ale#fixers#syntax_tree#GetCommand(a:buffer), | ||
\ 'read_temporary_file': 1, | ||
\} | ||
endfunction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -529,6 +529,7 @@ Notes: | |
* `solargraph` | ||
* `sorbet` | ||
* `standardrb` | ||
* `syntax_tree` | ||
* Rust | ||
* `cargo`!! | ||
* `cspell` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Before: | ||
Save g:ale_ruby_syntax_tree_executable | ||
Save g:ale_ruby_syntax_tree_options | ||
|
||
" Use an invalid global executable, so we don't match it. | ||
let g:ale_ruby_syntax_tree_executable = 'xxxinvalid' | ||
let g:ale_ruby_syntax_tree_options = '' | ||
|
||
call ale#test#SetDirectory('/testplugin/test/fixers') | ||
|
||
After: | ||
Restore | ||
|
||
call ale#test#RestoreDirectory() | ||
|
||
Execute(The syntax_tree callback should return the correct default values): | ||
call ale#test#SetFilename('../test-files/ruby/dummy.rb') | ||
|
||
AssertEqual | ||
\ { | ||
\ 'read_temporary_file': 1, | ||
\ 'command': ale#Escape(g:ale_ruby_syntax_tree_executable) | ||
\ . ' write %t', | ||
\ }, | ||
\ ale#fixers#syntax_tree#Fix(bufnr('')) | ||
|
||
Execute(The syntax_tree callback should include custom options): | ||
let g:ale_ruby_syntax_tree_options = '--print-width=100 --plugins=plugin/trailing_comma' | ||
call ale#test#SetFilename('../test-files/ruby/with_config/dummy.rb') | ||
|
||
AssertEqual | ||
\ { | ||
\ 'read_temporary_file': 1, | ||
\ 'command': ale#Escape(g:ale_ruby_syntax_tree_executable) | ||
\ . ' write --print-width=100 --plugins=plugin/trailing_comma %t', | ||
\ }, | ||
\ ale#fixers#syntax_tree#Fix(bufnr('')) |