[code-quality] Getting Flake8 to report syntax errors.
Sample input file "test.py": def f(x) print x Pyflakes reports the syntax error: $ pyflakes test.py test.py:1:9: invalid syntax def f(x) ^ $ But Flake8 doesn't: $ flake8 test.py $ Is this intentional? Is there a way to get Flake8 to report synt
Re: [code-quality] Getting Flake8 to report syntax errors.
On Jan 15, 2015 7:00 PM, "Kannan Goundan" wrote: > > Sample input file "test.py": > > def f(x) > print x > > Pyflakes reports the syntax error: > > $ pyflakes test.py > test.py:1:9: invalid syntax > def f(x) > ^ > $ > > But Flake8 doesn't: > > $ flake8 t