Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Tue, 04 Aug 2020 03:16:25
Message-Id: 1596510841.1c45b36ee1d2062ec56ad56cba194affcdf2ce0e.zmedico@gentoo
1 commit: 1c45b36ee1d2062ec56ad56cba194affcdf2ce0e
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 4 02:44:55 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 4 03:14:01 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1c45b36e
7
8 pylintrc: turn on checks for reimported modules
9
10 * also, really fix the enable module structure
11
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
14
15 pylintrc | 20 +++++++++++---------
16 1 file changed, 11 insertions(+), 9 deletions(-)
17
18 diff --git a/pylintrc b/pylintrc
19 index 690941715..ad32f70d7 100644
20 --- a/pylintrc
21 +++ b/pylintrc
22 @@ -12,15 +12,17 @@
23 # --disable=W".
24 #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module
25 disable=all
26 -enable=missing-final-newline,
27 - mixed-line-endings,
28 - redefined-builtin,
29 - trailing-newlines,
30 - trailing-whitespace,
31 - unexpected-line-ending-format,
32 - unnecessary-semicolon,
33 - unused-import,
34 - useless-object-inheritance
35 +enable=
36 + missing-final-newline,
37 + mixed-line-endings,
38 + redefined-builtin,
39 + reimported,
40 + trailing-newlines,
41 + trailing-whitespace,
42 + unexpected-line-ending-format,
43 + unnecessary-semicolon,
44 + unused-import,
45 + useless-object-inheritance
46
47 # A comma-separated list of package or module names from where C extensions may
48 # be loaded. Extensions are loading into the active Python interpreter and may