README (777B)
1 An implementation of Erik Dörnenburgs code toxicity plots that outputs 2 an ugly table instead of a pretty graph. 3 4 See https://erik.doernenburg.com/2008/11/how-toxic-is-your-code/ 5 See https://github.com/AdamNowotny/toxicity-charts 6 7 Code toxicity is the sum of code smells in java code found using checkstyle. 8 9 See http://checkstyle.sourceforge.net/ 10 11 The code smells used are: 12 - File length 13 - Method length 14 - Argument amount 15 - Cyclomatic complexity 16 - Anonymous method length 17 - Boolean complexity 18 - Class abstraction coupling 19 - Class fan-out complexity 20 - Nested if depth 21 - Nested try depth 22 23 This package includes and uses Stuart Langridges sortable.js to make the table output sortable. 24 See https://kryogenix.org/code/browser/sorttable/ 25 26 See Makefile for example usage.