X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/e14e7c6235a40dbec451146bcb3aaec013d659c9..c4b13f2b7fffa410074e2c54428645135ef2ee72:/.pylintrc diff --git a/.pylintrc b/.pylintrc index da6dbe03..e8609407 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,6 +1,7 @@ [MASTER] extension-pkg-whitelist=osmium +ignored-modules=icu,datrie [MESSAGES CONTROL] @@ -9,3 +10,9 @@ extension-pkg-whitelist=osmium # closing added here because it sometimes triggers a false positive with # 'with' statements. ignored-classes=NominatimArgs,closing +# 'too-many-ancestors' is triggered already by deriving from UserDict +# 'not-context-manager' disabled because it causes false positives once +# typed Python is enabled. See also https://github.com/PyCQA/pylint/issues/5273 +disable=too-few-public-methods,duplicate-code,too-many-ancestors,bad-option-value,no-self-use,not-context-manager + +good-names=i,x,y,fd,db,cc