X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4c52777ef03738803845f9ee58d269d93bbb9c3d..5751686fdce33f6b69a93dd1641ceacb2239791f:/.pylintrc diff --git a/.pylintrc b/.pylintrc index e283292a..5159c51a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,6 +1,6 @@ [MASTER] -extension-pkg-whitelist=osmium +extension-pkg-whitelist=osmium,falcon ignored-modules=icu,datrie [MESSAGES CONTROL] @@ -10,6 +10,9 @@ ignored-modules=icu,datrie # 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,chained-comparison -good-names=i,x,y,fd,db +good-names=i,x,y,m,t,fd,db,cc,x1,x2,y1,y2,pt,k,v