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:
parent
b1fda1b0ef
commit
b0fa821bc3
@ -33,7 +33,8 @@ disable=no-self-use,
|
|||||||
ungrouped-imports,
|
ungrouped-imports,
|
||||||
redefined-variable-type,
|
redefined-variable-type,
|
||||||
suppressed-message,
|
suppressed-message,
|
||||||
too-many-return-statements
|
too-many-return-statements,
|
||||||
|
duplicate-code
|
||||||
|
|
||||||
[BASIC]
|
[BASIC]
|
||||||
function-rgx=[a-z_][a-z0-9_]{2,50}$
|
function-rgx=[a-z_][a-z0-9_]{2,50}$
|
||||||
|
Loading…
Reference in New Issue
Block a user