Index: pylintrc |
diff --git a/pylintrc b/pylintrc |
index bb5f1b987f20b2f17fa299da39c67cb126f2f462..ca128bfcc315b3e8dfa9df60d47fa32fa6b7bd21 100644 |
--- a/pylintrc |
+++ b/pylintrc |
@@ -36,6 +36,7 @@ load-plugins= |
# C0111: Missing docstring |
# C0302: Too many lines in module (N) |
# I0011: Locally disabling WNNNN |
+# R0801: Similar lines in N files |
# R0901: Too many ancestors (8/7) |
# R0902: Too many instance attributes (N/7) |
# R0903: Too few public methods (N/2) |
@@ -46,10 +47,13 @@ load-plugins= |
# R0915: Too many statements (N/50) |
# W0122: Use of the exec statement |
# W0141: Used builtin function '' |
+# W0142: Used * or ** magic |
+# W0402: Uses of a deprecated module 'string' |
+# W0511: TODO |
# W0603: Using the global statement |
# W0613: Unused argument '' |
# W6501: Specify string format arguments as logging function parameters |
-disable=C0103,C0111,C0302,I0011,R0901,R0902,R0903,R0911,R0912,R0913,R0914,R0915,W0122,W0141,W0603,W0613,W6501 |
+disable=C0103,C0111,C0302,I0011,R0801,R0901,R0902,R0903,R0911,R0912,R0913,R0914,R0915,W0122,W0141,W0142,W0402,W0511,W0603,W0613,W6501 |
[REPORTS] |