-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for ruff formatter (#4645)
- Loading branch information
1 parent
50e237f
commit 5cddc4c
Showing
7 changed files
with
230 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,72 @@ | ||
" Author: Yining <[email protected]>, Joseph Henrich <[email protected]> | ||
" Description: ruff formatter as ALE fixer for python files | ||
|
||
call ale#Set('python_ruff_format_executable', 'ruff') | ||
call ale#Set('python_ruff_format_options', '') | ||
call ale#Set('python_ruff_format_use_global', get(g:, 'ale_use_global_executables', 0)) | ||
call ale#Set('python_ruff_format_change_directory', 1) | ||
call ale#Set('python_ruff_format_auto_pipenv', 0) | ||
call ale#Set('python_ruff_format_auto_poetry', 0) | ||
|
||
function! ale#fixers#ruff_format#GetCwd(buffer) abort | ||
if ale#Var(a:buffer, 'python_ruff_format_change_directory') | ||
" Run from project root if found, else from buffer dir. | ||
let l:project_root = ale#python#FindProjectRoot(a:buffer) | ||
|
||
return !empty(l:project_root) ? l:project_root : '%s:h' | ||
endif | ||
|
||
return '%s:h' | ||
endfunction | ||
|
||
function! ale#fixers#ruff_format#GetExecutable(buffer) abort | ||
if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_ruff_format_auto_pipenv')) | ||
\ && ale#python#PipenvPresent(a:buffer) | ||
return 'pipenv' | ||
endif | ||
|
||
if (ale#Var(a:buffer, 'python_auto_poetry') || ale#Var(a:buffer, 'python_ruff_format_auto_poetry')) | ||
\ && ale#python#PoetryPresent(a:buffer) | ||
return 'poetry' | ||
endif | ||
|
||
return ale#python#FindExecutable(a:buffer, 'python_ruff_format', ['ruff']) | ||
endfunction | ||
|
||
function! ale#fixers#ruff_format#GetCommand(buffer) abort | ||
let l:executable = ale#fixers#ruff_format#GetExecutable(a:buffer) | ||
let l:exec_args = l:executable =~? 'pipenv\|poetry$' | ||
\ ? ' run ruff' | ||
\ : '' | ||
|
||
return ale#Escape(l:executable) . l:exec_args | ||
endfunction | ||
|
||
function! ale#fixers#ruff_format#Fix(buffer) abort | ||
let l:executable = ale#fixers#ruff_format#GetExecutable(a:buffer) | ||
let l:cmd = [ale#Escape(l:executable)] | ||
|
||
if l:executable =~? 'pipenv\|poetry$' | ||
call extend(l:cmd, ['run', 'ruff']) | ||
endif | ||
|
||
let l:options = ale#Var(a:buffer, 'python_ruff_format_options') | ||
|
||
" when --stdin-filename present, ruff will use it for proj root resolution | ||
" https://github.com/charliermarsh/ruff/pull/1281 | ||
let l:fname = expand('#' . a:buffer . '...') | ||
call add(l:cmd, 'format') | ||
|
||
if !empty(l:options) | ||
call add(l:cmd, l:options) | ||
endif | ||
|
||
call add(l:cmd, '--stdin-filename '.ale#Escape(ale#path#Simplify(l:fname))) | ||
|
||
call add(l:cmd, '-') | ||
|
||
return { | ||
\ 'cwd': ale#fixers#ruff_format#GetCwd(a:buffer), | ||
\ 'command': join(l:cmd, ' '), | ||
\} | ||
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
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,86 @@ | ||
Before: | ||
call ale#assert#SetUpFixerTest('python', 'ruff_format') | ||
|
||
let b:bin_dir = has('win32') ? 'Scripts' : 'bin' | ||
|
||
After: | ||
call ale#assert#TearDownFixerTest() | ||
|
||
unlet! g:dir | ||
unlet! b:bin_dir | ||
|
||
Execute(The ruff callback should not change directory if the option is set to 0): | ||
let g:ale_python_ruff_format_change_directory = 0 | ||
|
||
let file_path = g:dir . '/../test-files/python/with_virtualenv/subdir/foo/bar.py' | ||
|
||
silent execute 'file ' . fnameescape(file_path) | ||
|
||
let fname = ale#Escape(ale#path#Simplify(file_path)) | ||
|
||
AssertFixer | ||
\ { | ||
\ 'cwd': '%s:h', | ||
\ 'command': ale#Escape(ale#path#Simplify(g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir . '/ruff')) . ' format --stdin-filename ' . fname . ' -', | ||
\ } | ||
|
||
Execute(The ruff callback should respect custom options): | ||
let g:ale_python_ruff_format_options = '--ignore F401 -q' | ||
|
||
let file_path = g:dir . '/../test-files/python/with_virtualenv/subdir/foo/bar.py' | ||
|
||
silent execute 'file ' . fnameescape(file_path) | ||
|
||
let fname = ale#Escape(ale#path#Simplify(file_path)) | ||
|
||
AssertFixer | ||
\ { | ||
\ 'cwd': ale#path#Simplify(g:dir . '/../test-files/python/with_virtualenv/subdir'), | ||
\ 'command': ale#Escape(ale#path#Simplify(g:dir . '/../test-files/python/with_virtualenv/env/' . b:bin_dir . '/ruff')) | ||
\ . ' format --ignore F401 -q --stdin-filename '. fname . ' -', | ||
\ } | ||
|
||
Execute(Pipenv is detected when python_ruff_format_auto_pipenv is set): | ||
let g:ale_python_ruff_format_auto_pipenv = 1 | ||
let g:ale_python_ruff_format_change_directory = 0 | ||
|
||
let file_path = '../test-files/python/pipenv/whatever.py' | ||
|
||
call ale#test#SetFilename(file_path) | ||
|
||
let fname = ale#Escape(ale#path#Simplify(g:dir . '/'. file_path)) | ||
|
||
AssertFixer | ||
\ { | ||
\ 'cwd': '%s:h', | ||
\ 'command': ale#Escape('pipenv') . ' run ruff format --stdin-filename ' . fname . ' -' | ||
\ } | ||
|
||
Execute(Poetry is detected when python_ruff_auto_poetry is set): | ||
let g:ale_python_ruff_format_auto_poetry = 1 | ||
let g:ale_python_ruff_format_change_directory = 0 | ||
|
||
call ale#test#SetFilename('../test-files/python/poetry/whatever.py') | ||
|
||
let fname = ale#Escape(ale#path#Simplify(g:dir .'/../test-files/python/poetry/whatever.py')) | ||
|
||
AssertFixer | ||
\ { | ||
\ 'cwd': '%s:h', | ||
\ 'command': ale#Escape('poetry') . ' run ruff format --stdin-filename ' . fname . ' -' | ||
\ } | ||
|
||
Execute(Poetry is detected when python_ruff_format_auto_poetry is set, and cwd respects change_directory option): | ||
let g:ale_python_ruff_format_auto_poetry = 1 | ||
let g:ale_python_ruff_format_change_directory = 1 | ||
|
||
call ale#test#SetFilename('../test-files/python/poetry/whatever.py') | ||
|
||
let fname = ale#Escape(ale#path#Simplify(g:dir .'/../test-files/python/poetry/whatever.py')) | ||
|
||
AssertFixer | ||
\ { | ||
\ 'cwd': ale#path#Simplify(g:dir . '/../test-files/python/poetry'), | ||
\ 'command': ale#Escape('poetry') . ' run ruff format --stdin-filename ' . fname . ' -' | ||
\ } | ||
|