Gentoo Archives: gentoo-portage-dev

From: Aaron Bauman <bman@g.o>
To: gentoo-portage-dev@l.g.o
Cc: Aaron Bauman <bman@g.o>
Subject: [gentoo-portage-dev] [PATCH] pylintrc: add more module checks
Date: Tue, 04 Aug 2020 14:08:18
Message-Id: 20200804140809.2572841-1-bman@gentoo.org
1 * Repo is already clear... so let's turn these on
2
3 Signed-off-by: Aaron Bauman <bman@g.o>
4 ---
5 pylintrc | 25 ++++++++++++++++---------
6 1 file changed, 16 insertions(+), 9 deletions(-)
7
8 diff --git a/pylintrc b/pylintrc
9 index ad32f70d7..cd76d38dd 100644
10 --- a/pylintrc
11 +++ b/pylintrc
12 @@ -13,16 +13,23 @@
13 #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module
14 disable=all
15 enable=
16 - missing-final-newline,
17 - mixed-line-endings,
18 - redefined-builtin,
19 - reimported,
20 + cyclic-import,
21 + import-error,
22 + import-self,
23 + misplaced-future,
24 + missing-final-newline,
25 + mixed-line-endings,
26 + redefined-builtin,
27 + reimported,
28 + relative-beyond-top-level,
29 trailing-newlines,
30 - trailing-whitespace,
31 - unexpected-line-ending-format,
32 - unnecessary-semicolon,
33 - unused-import,
34 - useless-object-inheritance
35 + trailing-whitespace,
36 + unexpected-line-ending-format,
37 + unnecessary-semicolon,
38 + unused-import,
39 + useless-import-alias,
40 + useless-object-inheritance,
41 + wildcard-import
42
43 # A comma-separated list of package or module names from where C extensions may
44 # be loaded. Extensions are loading into the active Python interpreter and may
45 --
46 2.28.0

Replies