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

PYFLAKES = True executes python

Open targzeta opened this issue 12 years ago • 0 comments

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: No config file found, using default configuration

DEBUG    pep8 --repeat --ignore= parser.py
DEBUG    python parser.py

(see the latest line).

If I write a ~/.pyflymakerc with "PYFLAKES = False":

pyflymake.py -d parser.py 
DEBUG    pylint --msg-template {path}:{line}: [{msg_id}], {obj} {msg} --reports n --disable= parser.py
DEBUG    PylintRunner stderr: No config file found, using default configuration

DEBUG    pep8 --repeat --ignore= parser.py

Emanuele

targzeta avatar Nov 16 '13 13:11 targzeta