diff options
author | Florian Bruhin <me@the-compiler.org> | 2019-10-01 12:07:22 +0200 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2019-10-01 12:07:22 +0200 |
commit | 59f5d00ce73cc4625e214e1ec916596045b80e00 (patch) | |
tree | c700f1bca3b5806447f15df77e0a53c51b7c53a7 /.pylintrc | |
parent | 7e91ce94cf5a07356123265c06384a736f35eb2d (diff) | |
download | qutebrowser-59f5d00ce73cc4625e214e1ec916596045b80e00.tar.gz qutebrowser-59f5d00ce73cc4625e214e1ec916596045b80e00.zip |
pylint: Ignore import-outside-toplevel
There are good reasons to do those.
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -40,7 +40,8 @@ disable=locally-disabled, too-many-branches, too-many-statements, too-few-public-methods, - bad-builtin + bad-builtin, + import-outside-toplevel [BASIC] function-rgx=[a-z_][a-z0-9_]{2,50}$ |