From 0827df3e2ad1c0e6787e3fc85cae0a9b266af416 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Fri, 19 Feb 2016 15:30:54 -0600 Subject: [PATCH] Fix our evaluation formula --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index ed80ac9..f778dd4 100644 --- a/.pylintrc +++ b/.pylintrc @@ -82,7 +82,7 @@ reports=no # respectively contain the number of errors / warnings messages and the total # number of statements analyzed. This is used by the global evaluation report # (RP0004). -evaluation=100.0 - ((float(5 * error + warning + refactor + convention) / statement) * 100) +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) # Template used to display messages. This is a python new-style format string # used to format the message information. See doc for all details