X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b50d6078f5cec2362813d710db35e616e9913ea2..96e1ef3ff846324bbfef1f209bfe30d88125b5bd:/.pylintrc diff --git a/.pylintrc b/.pylintrc index 28ce1ff4..cbb26a4e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,7 +1,7 @@ [MASTER] -extension-pkg-whitelist=osmium -ignored-modules=icu +extension-pkg-whitelist=osmium,falcon +ignored-modules=icu,datrie [MESSAGES CONTROL] @@ -10,6 +10,9 @@ ignored-modules=icu # closing added here because it sometimes triggers a false positive with # 'with' statements. ignored-classes=NominatimArgs,closing -disable=too-few-public-methods,duplicate-code +# '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,use-dict-literal -good-names=i,x,y,fd,db +good-names=i,x,y,m,t,fd,db,cc