mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 06:22:08 +03:00
d14a585cc9
This checker encourages bad behaviour (namely changing the static status of a function during inheritence) and will be made optional in upcoming versions of pylint.
17 lines
422 B
INI
17 lines
422 B
INI
[MASTER]
|
|
|
|
extension-pkg-whitelist=osmium
|
|
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
|
|
disable=too-few-public-methods,duplicate-code,too-many-ancestors,bad-option-value,no-self-use
|
|
|
|
good-names=i,x,y,fd,db
|