summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-03-23 20:51:37 +0100
committerFlorian Bruhin <git@the-compiler.org>2017-03-23 20:51:37 +0100
commit52b448e36800979762a8f13dd5b789a7c676a063 (patch)
treeb800e10ee0dbdab331609befd43e757480f0241d /.pylintrc
parent38beba98b9943628e7c32414aab8a2542bc115f9 (diff)
downloadqutebrowser-52b448e36800979762a8f13dd5b789a7c676a063.tar.gz
qutebrowser-52b448e36800979762a8f13dd5b789a7c676a063.zip
pylint: Ignore no-else-return
This will be added in the next pylint release, and it seems we can already add it without getting an error.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 3f06facaf..c94058297 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -38,7 +38,8 @@ disable=no-self-use,
suppressed-message,
too-many-return-statements,
duplicate-code,
- wrong-import-position
+ wrong-import-position,
+ no-else-return
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$