--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Thu Mar 16 20:00:31 2017 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Fri Mar 17 19:09:39 2017 +0100 @@ -188,11 +188,13 @@ @param args arguments used by the codeStyleCheck function (list of excludeMessages (str), includeMessages (str), repeatMessages (bool), fixCodes (str), noFixCodes (str), fixIssues (bool), - maxLineLength (int), hangClosing (bool), docType (str), errors - (list of str), eol (str), encoding (str), backup (bool)) - @return tuple of stats (dict) and results (tuple for each found violation - of style (tuple of lineno (int), position (int), text (str), ignored - (bool), fixed (bool), autofixing (bool), fixedMsg (str))) + maxLineLength (int), hangClosing (bool), docType (str), maximum + allowed code complexity (int), dictionary with arguments for the + miscellaneous checker (dict), errors (list of str), eol (str), + encoding (str), backup (bool)) + @return tuple of statistics (dict) and results (tuple for each found + violation of style (tuple of lineno (int), position (int), text (str), + ignored (bool), fixed (bool), autofixing (bool), fixedMsg (str))) """ (excludeMessages, includeMessages, repeatMessages, fixCodes, noFixCodes, fixIssues, maxLineLength, hangClosing, docType, maxComplexity,