diff --git a/pyproject.toml b/pyproject.toml index cc55f00bd..e66cdcbf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,12 +87,12 @@ local_scheme = "node-and-date" [tool.ruff] include = ["pynxtools/*.py", "tests/*.py"] -select = [ +lint.select = [ "E", # pycodestyle "W", # pycodestyle "PL", # pylint ] -ignore = [ +lint.ignore = [ "E501", # Line too long ({width} > {limit} characters) "E701", # Multiple statements on one line (colon) "E731", # Do not assign a lambda expression, use a def @@ -107,7 +107,7 @@ ignore = [ "PLR1714", # consider-using-in "PLR5501", # else-if-used ] -fixable = ["ALL"] +lint.fixable = ["ALL"] exclude = ["pynxtools/definitions/*"] [tool.mypy]