pylint: Disable duplicate-code globally

We can't disable it more fine-grained:
https://github.com/PyCQA/pylint/issues/214

I think for the shown duplicate (histroy in webkittab/webenginetab) it
makes no sense to refactor things as a Mixin...
This commit is contained in:
Florian Bruhin 2016-07-08 11:03:27 +02:00
parent b1fda1b0ef
commit b0fa821bc3

View File

@ -33,7 +33,8 @@ disable=no-self-use,
ungrouped-imports,
redefined-variable-type,
suppressed-message,
too-many-return-statements
too-many-return-statements,
duplicate-code
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$