flymake-python
flymake-python copied to clipboard
PYFLAKES = True executes python
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