mirror of
https://github.com/HorlogeSkynet/archey4
synced 2024-11-24 16:00:09 +01:00
3b5aea1ee7
This reverts commit 4434c58807
.
28 lines
851 B
INI
28 lines
851 B
INI
[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
|
|
|
|
# Additional plugins to check the code base against.
|
|
load-plugins=
|
|
pylint.extensions.check_elif,
|
|
pylint.extensions.redefined_variable_type,
|
|
pylint.extensions.overlapping_exceptions,
|
|
pylint.extensions.empty_comment,
|
|
pylint.extensions.while_used,
|
|
pylint_secure_coding_standard
|
|
|
|
[DESIGN]
|
|
# For entries classes, we (often) only use the `__init__` magic method.
|
|
min-public-methods=0
|