Vim Tips Wiki
Register
(adjust Template:ScriptComments to remove id as no longer needed; minor tweaks)
 
Line 26: Line 26:
   
 
==Comments==
 
==Comments==
  +
  +
The patch is working for pylint 0.25.1 too.
  +
  +
Thanks a lot!

Latest revision as of 19:12, 16 January 2012

Use this page to discuss script 891 pylint: Python style checking tool

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Bug[]

This script does not work with my pylint:

$ pylint --version
pylint 0.24.0,
astng 0.22.0, common 0.56.0
Python 2.7.2 (default, Jun 29 2011, 11:10:00)
[GCC 4.6.1]

Apply the following patch to fix it:

$ diff pylint.vim.orig pylint.vim
69c69
< CompilerSet makeprg=(echo\ '[%]';\ pylint\ -r\ y\ %)
---
> CompilerSet makeprg=(echo\ '[%]';\ pylint\ -r\ y\ --output-format=parseable\ %)
74c74
< CompilerSet efm=%+P[%f],%t:\ %#%l:%m,%Z,%+IYour\ code%m,%Z,%-G%.%#
---
> CompilerSet efm=%f:%l:\ [%t]%m,%f:%l:%m

--anon 10:28, August 25, 2011

Comments[]

The patch is working for pylint 0.25.1 too.

Thanks a lot!