Skip to content

Commit

Permalink
Fix our evaluation formula
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmavirus24 committed Feb 19, 2016
1 parent bda3124 commit 0827df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0827df3

Please sign in to comment.