2021-02-24 19:21:45 +03:00
|
|
|
[MASTER]
|
|
|
|
|
2022-12-05 18:16:18 +03:00
|
|
|
extension-pkg-whitelist=osmium,falcon
|
2021-06-09 16:07:36 +03:00
|
|
|
ignored-modules=icu,datrie
|
2021-02-24 19:21:45 +03:00
|
|
|
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
|
|
|
|
[TYPECHECK]
|
|
|
|
|
|
|
|
# closing added here because it sometimes triggers a false positive with
|
|
|
|
# 'with' statements.
|
|
|
|
ignored-classes=NominatimArgs,closing
|
2022-02-07 13:49:18 +03:00
|
|
|
# 'too-many-ancestors' is triggered already by deriving from UserDict
|
2022-07-03 12:33:19 +03:00
|
|
|
# 'not-context-manager' disabled because it causes false positives once
|
|
|
|
# typed Python is enabled. See also https://github.com/PyCQA/pylint/issues/5273
|
2024-05-14 15:50:37 +03:00
|
|
|
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
|
2021-05-12 20:57:48 +03:00
|
|
|
|
2023-05-24 14:52:31 +03:00
|
|
|
good-names=i,j,x,y,m,t,fd,db,cc,x1,x2,y1,y2,pt,k,v,nr
|
2024-08-05 15:25:46 +03:00
|
|
|
|
|
|
|
[DESIGN]
|
|
|
|
|
|
|
|
max-returns=7
|