Skip to content

Commit

Permalink
pylint: Disable duplicate-code globally
Browse files Browse the repository at this point in the history
We can't disable it more fine-grained:
pylint-dev/pylint#214

I think for the shown duplicate (histroy in webkittab/webenginetab) it
makes no sense to refactor things as a Mixin...
  • Loading branch information
The-Compiler committed Jul 8, 2016
1 parent b1fda1b commit b0fa821
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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}$
Expand Down

0 comments on commit b0fa821

Please sign in to comment.