From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4021A138359 for ; Tue, 4 Aug 2020 19:28:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 578CEE0A95; Tue, 4 Aug 2020 19:28:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A3E8E0A95 for ; Tue, 4 Aug 2020 19:28:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 971F534E835 for ; Tue, 4 Aug 2020 19:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B232274 for ; Tue, 4 Aug 2020 19:28:34 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1596569278.8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: .editorconfig pylintrc X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40 X-VCS-Branch: master Date: Tue, 4 Aug 2020 19:28:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 33ad9927-b576-44c9-b3cd-45b26be986be X-Archives-Hash: 51473e9a7cbcc862efc7950020b2943c commit: 8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40 Author: Aaron Bauman gentoo org> AuthorDate: Tue Aug 4 14:08:09 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Aug 4 19:27:58 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=8b10dc3f pylintrc: add more module checks * Repo is already clear... so let's turn these on Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> .editorconfig | 5 ++++- pylintrc | 27 +++++++++++++++++---------- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/.editorconfig b/.editorconfig index da06fc19f..355129b9b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# Copyright 2017 Gentoo Foundation +# Copyright 2017-2020 Gentoo Authors root = true @@ -12,3 +12,6 @@ insert_final_newline = true [*.{yaml,yml}] indent_style = space + +[pylintrc] +indent_style = space diff --git a/pylintrc b/pylintrc index ad32f70d7..cdfd48653 100644 --- a/pylintrc +++ b/pylintrc @@ -13,16 +13,23 @@ #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module disable=all enable= - missing-final-newline, - mixed-line-endings, - redefined-builtin, - reimported, - trailing-newlines, - trailing-whitespace, - unexpected-line-ending-format, - unnecessary-semicolon, - unused-import, - useless-object-inheritance + cyclic-import, + import-error, + import-self, + misplaced-future, + missing-final-newline, + mixed-line-endings, + redefined-builtin, + reimported, + relative-beyond-top-level, + trailing-newlines, + trailing-whitespace, + unexpected-line-ending-format, + unnecessary-semicolon, + unused-import, + useless-import-alias, + useless-object-inheritance, + wildcard-import # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may