From ed485e1994073606da6e23ecc95f0f996c5a1eb6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 25 Aug 2019 23:05:55 +0000 Subject: [PATCH] pylintrc: disable score reports Pylint-1.7+ include a score report by default at the end of every module lint. We disable reports in general, so silence this too. Bug: 866772 Change-Id: Ie3df44c80b90daa59e46c8fd37a949176c9b09a2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1770420 Reviewed-by: Robbie Iannucci Commit-Queue: Mike Frysinger --- pylintrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pylintrc b/pylintrc index 283f6e4bd1..20f2a6a070 100644 --- a/pylintrc +++ b/pylintrc @@ -154,6 +154,9 @@ files-output=no # CHANGED: reports=no +# Activate the evaluation score. +score=no + # Python expression which should return a note less than 10 (10 is the highest # note). You have access to the variables errors warning, statement which # respectively contain the number of errors / warnings messages and the total