pylintrc: disable reports

Message ID 1447134373-1018-1-git-send-email-vapier@gentoo.org
State Committed
Delegated to: Mike Frysinger
Headers

Commit Message

Mike Frysinger Nov. 10, 2015, 5:46 a.m. UTC
  I've never found these useful, nor found anyone else who likes them.
Turn them off by default.

2015-11-09  Mike Frysinger  <vapier@gentoo.org>

	* scripts/pylintrc (reports): Set to no.
---
 scripts/pylintrc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Siddhesh Poyarekar Nov. 10, 2015, 5:50 a.m. UTC | #1
On 10 November 2015 9:46:13 am GMT+04:00, Mike Frysinger <vapier@gentoo.org> wrote:
>I've never found these useful, nor found anyone else who likes them.
>Turn them off by default.
>
>2015-11-09  Mike Frysinger  <vapier@gentoo.org>
>
>	* scripts/pylintrc (reports): Set to no.
>---
> scripts/pylintrc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/scripts/pylintrc b/scripts/pylintrc
>index a05ddfd..c92f100 100644
>--- a/scripts/pylintrc
>+++ b/scripts/pylintrc
>@@ -54,7 +54,7 @@ output-format=text
> files-output=no
> 
> # Tells whether to display a full report or only the messages
>-reports=yes
>+reports=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

Looks good to me.

Siddhesh
  

Patch

diff --git a/scripts/pylintrc b/scripts/pylintrc
index a05ddfd..c92f100 100644
--- a/scripts/pylintrc
+++ b/scripts/pylintrc
@@ -54,7 +54,7 @@  output-format=text
 files-output=no
 
 # Tells whether to display a full report or only the messages
-reports=yes
+reports=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