mmgen-node-tools/pyproject.toml
The MMGen Project ada2cecada
Check the MMGen Node Tools with the pylint static code analyzer:
# Install pylint:
    $ python3 -m pip install pylint

    # Perform the check:
    $ test/test-release.sh lint

The linting operation should complete without error if running Python v3.9 or
greater.
2023-10-13 09:50:16 +00:00

28 lines
535 B
TOML

[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pylint.format]
indent-string = "\t"
indent-after-paren = 2
max-line-length = 110
[tool.pylint.main]
py-version = "3.7"
recursive = true
jobs = 0
[tool.pylint."messages control"]
ignored-modules = [
"mmgen.term",
"mmgen.color",
]
ignored-classes = [
"mmgen_node_tools.Ticker.Ticker.base",
"mmgen_node_tools.Ticker.DataSource.base",
"mmgen_node_tools.PeerBlocks.Display",
"mmgen_node_tools.PollDisplay.PollDisplay",
]