PyCharm and filters for external tools

前端 未结 2 2049
再見小時候
再見小時候 2021-02-07 06:19

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

2条回答
  •  天涯浪人
    2021-02-07 07:06

    You're going to kick yourself when you hear this. You've missed a $ off the end of COLUMN. Thank you very much for this by the way, I followed your steps and I have it working perfectly. Your filter should be.

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

    UPD: To have it work for PyCharm 1.5 use

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

提交回复
热议问题