dealertrack / flake8-diff

Run flake8 across a set of changed files and filter out violations occurring only on the lines that were changed.
MIT License
20 stars 8 forks source link

Simplify output #10

Closed miki725 closed 8 years ago

miki725 commented 10 years ago

flake8 prints out a lot of redundant output such as the filename in each file. This could be simplified by printing filename once and then only the violations for that file. This can make output more readable when there are many violations.

gregarmer commented 10 years ago

This should be easily toggled by a command line parameter, incase someone is using an automated output scanner (like Jenkins violation output plugin) which needs that info on every line since it uses a regex to match.

Something like --standard-flake8-output to turn off the nice formatting.

miki725 commented 8 years ago

done and merged hence closing