-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add flake8 support #51
Comments
Do you have a sample report that we can use when creating a parser? |
@tomasbjerre flake8 can you the same format as pylint:
But the issue is that I can't seem to figure out how to use the violations plugin for both pylint and flake8 at the same time. Any ideas? |
@Smotko shouldn't flake8 already include pylint results? If not, I believe it's possible to list multiple report files in the violation field (comma separated): Kindly let us know if using |
@asfaltboy No, flake8 does not include pylint. flake8 is a wrapper for PyFlakes, pep8 & Ned Batchelder’s McCabe script. My current workaround is to use the pep8 field which seems to be compatible with flake8's default output. I didn't know you can specify multiple files, thanks for pointing that out! |
I would really like to add flake8 support, flake8 produces an output file that contains both pep8 and pyflakes violations, but in one file.
The text was updated successfully, but these errors were encountered: