Fix ruff invocation in ALE
This commit is contained in:
parent
dd6e206f9b
commit
4f5e3f6cf1
1 changed files with 2 additions and 2 deletions
|
|
@ -1,9 +1,9 @@
|
|||
" Scan the following dirs recursively for tags
|
||||
let g:project_tags_dirs = ['kitty', 'kittens', 'tools']
|
||||
if exists('g:ale_linters')
|
||||
let g:ale_linters['python'] = ['mypy', 'ruff --no-update-check']
|
||||
let g:ale_linters['python'] = ['mypy', 'ruff']
|
||||
else
|
||||
let g:ale_linters = {'python': ['mypy', 'ruff --no-update-check']}
|
||||
let g:ale_linters = {'python': ['mypy', 'ruff']}
|
||||
endif
|
||||
let g:ale_python_mypy_executable = './mypy-editor-integration'
|
||||
let g:ale_fixers = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue