summaryrefslogtreecommitdiff
path: root/mnv/runtime/compiler/ruff.mnv
blob: 97e6a4ded55602bafe79516998f0bad3d4848d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
" MNV compiler file
" Compiler:     Ruff (Python linter)
" Maintainer:   @pbnj-dragon
" Last Change:  2024 Nov 07
"		2024 Nov 19 by the MNV Project (properly escape makeprg setting)
"		2025 Nov 06 by the MNV Project (do not set buffer-local makeprg)
"		2024 Dec 24 by the MNV Project (mute Found messages)

if exists("current_compiler") | finish | endif
let current_compiler = "ruff"

let s:cpo_save = &cpo
set cpo&mnv

" CompilerSet makeprg=ruff
exe 'CompilerSet makeprg=' .. escape('ruff check --output-format=concise '
        \ ..get(b:, 'ruff_makeprg_params', get(g:, 'ruff_makeprg_params', '--preview')),
        \ ' \|"')
CompilerSet errorformat=%f:%l:%c:\ %m,%f:%l:\ %m,%f:%l:%c\ -\ %m,%f:
CompilerSet errorformat+=%-GFound\ %.%#

let &cpo = s:cpo_save
unlet s:cpo_save