diff options
author | Florian Bruhin <git@the-compiler.org> | 2016-07-08 11:03:27 +0200 |
---|---|---|
committer | Florian Bruhin <git@the-compiler.org> | 2016-07-08 11:03:27 +0200 |
commit | b0fa821bc3c520d82e8598504d3e8458dd90fc3d (patch) | |
tree | 8dd16e214ff11fc09a5a6c0a4f31af3266b8df0e /.pylintrc | |
parent | b1fda1b0efc1d190ddfdfcd3a6c644b49dcb160d (diff) | |
download | qutebrowser-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-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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}$ |