flymake-python icon indicating copy to clipboard operation
flymake-python copied to clipboard

Highlight Python syntax, style and unit test errors in Emacs

Results 7 flymake-python issues
Sort by recently updated
recently updated
newest added

Sometimes the temporary flymake.pyc files are not deleted. Unfortunately I can't reproduce it, but it happens several times per week.

I don't have pyflakes but the default setting for PYFLAKES is True. ``` pyflymake.py -d parser.py DEBUG pylint --msg-template {path}:{line}: [{msg_id}], {obj} {msg} --reports n --disable= parser.py DEBUG PylintRunner stderr:...

pylint configuration occurs in the .pyflymakerc, but some options don't seem to be supported such as: ``` [FORMAT] max-line-length=120 ``` Adding support for using a .pylintrc would be nice to...

`PyflakesRunner` only inspects either stdout or stderr but not both.

As mentioned in #16, some older versions of Python checking tools shipping with Ubuntu don't work well with flymake-python. The documentation should specify what are the minimum required versions.

I'm running Arch, which has python3 as the `/usr/bin/env python` as called from the pyflymake.py A quick hack I used to get it to work with python2: ``` diff -#!/usr/bin/env...