diff --git a/pyproject.toml b/pyproject.toml index df4691c..e3fe913 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.ruff] line-length = 100 -select = [ +lint.select = [ "ANN", # flake8-annotations "B", # flake8-bugbear "D", # pydocstyle @@ -11,10 +11,10 @@ select = [ "F", # Pyflakes "Q", # flake8-quotes ] -ignore = [ +lint.ignore = [ "ANN101", # missing-type-self "D107", # undocumented-public-init ] -[tool.ruff.mccabe] +[tool.ruff.lint.mccabe] max-complexity = 10 \ No newline at end of file