archey4/.pylintrc
Samuel FORESTIER 3cced364b8 [CI] Disables similarities checker due to false positives and...
explicitly allows our entries enumeration keys names.

> See PyCQA/pylint#214.
2021-03-09 14:21:09 +01:00

19 lines
571 B
INI
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[MASTER]
# Required hook as we use absolute imports within the code.
init-hook='import sys; sys.path.append("archey/")'
# C sources of the `netifaces` module won't be available.
# Let's ignore it during linting please.
extension-pkg-whitelist=netifaces
# Automatically detects the number of CPU available to use.
jobs=0
# For the time being, disable `similarities` checker due to false positives across tests modules.
# See PyCQA/pylint#214.
disable=similarities
[DESIGN]
# For entries classes, we (often) only use the `__init__` magic method.
min-public-methods=0