By Running the pylint --load-plugins pylint_django ~/src/github.com/<repo>/ ||, it creates this very useful table displaying all the messages types, as well as how many of each my codebase has. As well as a WHOLE LOT of other information.
My question is, how can I get pylint to only output this table, as well as populate the previous and difference columns? I'd love to have a set of commands that runs this table against the tip of Master (previous), and my current branch.
Something like
### pseudocode
pylint table <git hash of previous> <git hash of current>
If you launch pylint twice in the same environment with the report option activated (and have permission to write file in this environment) then simply launching
pylint -r y --load-plugins pylint_django ~/src/github.com/<repo>/at commit that interest you should work.First run:
Second run after adding an issue voluntarily:
Ie you can do: