1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-04-05 09:26:45 +02:00
vim/runtime/compiler/pylint.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
494 B
VimL
Raw Normal View History

2016-11-17 14:50:09 +01:00
" Vim compiler file
" Compiler: Pylint for Python
" Maintainer: Daniel Moch <daniel@danielmoch.com>
" Last Change: 2016 May 20
" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
2016-11-17 14:50:09 +01:00
if exists("current_compiler")
finish
endif
let current_compiler = "pylint"
CompilerSet makeprg=pylint\ --output-format=text\ --msg-template=\"{path}:{line}:{column}:{C}:\ [{symbol}]\ {msg}\"\ --reports=no
CompilerSet errorformat=%A%f:%l:%c:%t:\ %m,%A%f:%l:\ %m,%A%f:(%l):\ %m,%-Z%p^%.%#,%-G%.%#