Fix ruff invocation in ALE

This commit is contained in:
Kovid Goyal 2023-01-26 08:44:16 +05:30
parent dd6e206f9b
commit 4f5e3f6cf1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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 = {