mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 12:06:27 +03:00
22 lines
795 B
INI
22 lines
795 B
INI
[MASTER]
|
|
|
|
extension-pkg-whitelist=osmium,falcon
|
|
ignored-modules=icu,datrie
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
[TYPECHECK]
|
|
|
|
# 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,use-dict-literal,chained-comparison,attribute-defined-outside-init,too-many-boolean-expressions,contextmanager-generator-missing-cleanup
|
|
|
|
good-names=i,j,x,y,m,t,fd,db,cc,x1,x2,y1,y2,pt,k,v,nr
|
|
|
|
[DESIGN]
|
|
|
|
max-returns=7 |