summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-07-08 11:03:27 +0200
committerFlorian Bruhin <git@the-compiler.org>2016-07-08 11:03:27 +0200
commitb0fa821bc3c520d82e8598504d3e8458dd90fc3d (patch)
tree8dd16e214ff11fc09a5a6c0a4f31af3266b8df0e /.pylintrc
parentb1fda1b0efc1d190ddfdfcd3a6c644b49dcb160d (diff)
downloadqutebrowser-b0fa821bc3c520d82e8598504d3e8458dd90fc3d.tar.gz
qutebrowser-b0fa821bc3c520d82e8598504d3e8458dd90fc3d.zip
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...
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 95be1d248..92720e3a4 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -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}$