summaryrefslogtreecommitdiff
path: root/uvim/runtime/compiler/ruff.vim
diff options
context:
space:
mode:
Diffstat (limited to 'uvim/runtime/compiler/ruff.vim')
-rw-r--r--uvim/runtime/compiler/ruff.vim23
1 files changed, 0 insertions, 23 deletions
diff --git a/uvim/runtime/compiler/ruff.vim b/uvim/runtime/compiler/ruff.vim
deleted file mode 100644
index d4f564b06a..0000000000
--- a/uvim/runtime/compiler/ruff.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-" Vim compiler file
-" Compiler: Ruff (Python linter)
-" Maintainer: @pbnj-dragon
-" Last Change: 2024 Nov 07
-" 2024 Nov 19 by the Vim Project (properly escape makeprg setting)
-" 2025 Nov 06 by the Vim Project (do not set buffer-local makeprg)
-" 2024 Dec 24 by the Vim Project (mute Found messages)
-
-if exists("current_compiler") | finish | endif
-let current_compiler = "ruff"
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-" 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