diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2019-10-25 11:24:29 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2019-10-25 11:24:29 +0200 |
commit | 334366d52a91de1309df5fc0ce89a57d9b23d5b1 (patch) | |
tree | 556001aed9fdc5f9920798d69a6cf304dae2dff8 /.pylintrc | |
parent | b34c794d14c714e5a3007a2e535425e6dfee51a5 (diff) | |
download | pykolab-334366d52a91de1309df5fc0ce89a57d9b23d5b1.tar.gz |
Suppress some linting issues
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,11 +1,13 @@ [MASTER] disable= + broad-except, cyclic-import, duplicate-code, + logging-not-lazy, missing-docstring, unused-argument, unused-wildcard-import, wildcard-import function-rgx=[a-z_][a-z0-9_]{2,90}$ -init-hook="import sys; sys.path.insert(0, './data/')" +init-hook="import sys; sys.path.insert(0, '.')" |