diff --git a/pyproject.toml b/pyproject.toml index 0b500e8..a96bf2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,11 @@ select = [ "PL", # pylint "RUF", # ruff-specific ] -ignore = [] +ignore = [ + "PLR2004", # Magic values - acceptable in CLI apps + "PLR0913", # Too many arguments - CLI commands need many options + "PLR0911", # Too many return statements +] [tool.ruff.lint.isort] known-first-party = ["tensors"]