Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm and filters for external tools

I'm trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make sure our code conforms.

I've configured an external tool command to run pep8 and it works good. I see the capability to create filters that will cause the output to be parsed into something PyCharm can use. I've read the docs and searched Google but can't find an example to make this work. Docs are http://www.jetbrains.com/pycharm/webhelp/add-filter-dialog.html

I'm using PyCharm 1.2 and the output filter I'm using looks like this:

$FILE_PATH$:$LINE$:$COLUMN:.*

Example output looks like this:

/home/matt/.../settings.py:13:30: E261 at least two spaces before inline comment
/home/matt/.../settings.py:20:80: E501 line too long (126 characters)

What would be even more awesome is if this could be run each time the file is saved.

like image 261
newz2000 Avatar asked Mar 25 '11 18:03

newz2000


People also ask

Does PyCharm have Pylint?

This plugin provides both real-time and on-demand scanning of Python files with Pylint from within the PyCharm IDE.


2 Answers

You've missed a $ off the end of COLUMN. I followed your steps and I have it working perfectly. Your filter should be:

$FILE_PATH$:$LINE$:$COLUMN$:.*

Update: To have it work for PyCharm 1.5 use:

$FILE_PATH$\:$LINE$\:$COLUMN$\:.*
like image 88
Rob Young Avatar answered Oct 11 '22 09:10

Rob Young


PyCharm expects full file path for the links to work, not just the name.

like image 45
CrazyCoder Avatar answered Oct 11 '22 07:10

CrazyCoder