mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
b4c5e743ac
mypy and ruff come from
https://github.com/Konfekt/vim-compilers/tree/master/compiler and the
former was added by @pbnj-dragon
closes: vim/vim#16007
6d9a145d71
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
20 lines
559 B
VimL
20 lines
559 B
VimL
" Vim compiler file
|
|
" Compiler: Ruff (Python linter)
|
|
" Maintainer: @pbnj-dragon
|
|
" Last Change: 2024 Nov 07
|
|
|
|
if exists("current_compiler") | finish | endif
|
|
let current_compiler = "ruff"
|
|
|
|
let s:cpo_save = &cpo
|
|
set cpo&vim
|
|
|
|
" CompilerSet makeprg=ruff
|
|
let &l:makeprg= 'ruff check --output-format=concise '
|
|
\ ..get(b:, 'ruff_makeprg_params', get(g:, 'ruff_makeprg_params', '--preview'))
|
|
exe 'CompilerSet makeprg='..escape(&l:makeprg, ' "')
|
|
CompilerSet errorformat=%f:%l:%c:\ %m,%f:%l:\ %m,%f:%l:%c\ -\ %m,%f:
|
|
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|