How to get pylint warnings to be marked in the Pydev Eclipse editor margin?

后端 未结 5 2381
不知归路
不知归路 2021-02-20 06:54

I have pylint installed (works fine on the command line) and set up within Pydev in Eclipse.

Pylint is being triggered OK when I edit files, and is outputting to the Ecl

5条回答
  •  野性不改
    2021-02-20 07:12

    I was having the same problem, and it turned out to be my pylint configuration file (~/.pylintrc by default). Be sure the output-format field is correct. It is under the [REPORTS] section, and the line should be:

    output-format=text

    If you've ever used pylint with another application (I do with emacs), it might say output-format=parseable.

提交回复
热议问题