diff --git a/pyproject.toml b/pyproject.toml index 2da4a5f..1c11f83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,8 +76,8 @@ filterwarnings = [ # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or # McCabe complexity (`C901`) by default. # See https://docs.astral.sh/ruff/rules/ -select = ["E4", "E7", "E9", "F", "I", "PL", "C901", "RUF010"] -#select = ["ALL"] +#select = ["E4", "E7", "E9", "F", "I", "PL", "C901", "RUF010"] +select = ["ALL"] ignore = ["PLR"] # pylint refactor # Allow fix for all enabled rules (when `--fix`) is provided. @@ -93,4 +93,7 @@ exclude = [ [tool.ruff.lint.mccabe] # Flag errors (`C901`) whenever the complexity level exceeds this number. # Default is 10 -max-complexity = 20 \ No newline at end of file +max-complexity = 20 + +[tool.ruff.lint.pydocstyle] +convention = "numpy" # Use the NumPy docstring style guide. \ No newline at end of file