X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/8bf15fa691e286c27c05619ae102fb4db16eda0d..df15f13c628a3e15dee4bcad44e97b2cacb40b9f:/.pylintrc diff --git a/.pylintrc b/.pylintrc index 28ce1ff4..c1384c00 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,chained-comparison,attribute-defined-outside-init -good-names=i,x,y,fd,db +good-names=i,j,x,y,m,t,fd,db,cc,x1,x2,y1,y2,pt,k,v,nr