From e232be258f67063862b9f754f4f59494713c62ab Mon Sep 17 00:00:00 2001 From: Maurizio Porrato Date: Fri, 18 Aug 2023 17:48:38 +0100 Subject: [PATCH] tox: stricter pylint --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8dd395f..3dc036a 100644 --- a/tox.ini +++ b/tox.ini @@ -7,5 +7,5 @@ groups = ; Dependency groups in pyproject.toml dev commands = pytest --cov-report term-missing --cov-fail-under=100 --cov=operator_repo -v tests/ - pylint --disable=R,C src + pylint --disable=missing-module-docstring,missing-function-docstring src mypy --strict src tests