diff --git a/pyproject.toml b/pyproject.toml index c17861d9..bd03a1e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -132,25 +132,24 @@ plugins.md046.enabled = false [tool.ruff] line-length = 80 -lint.select = ["ALL"] # we are being very strict! -lint.ignore = [ +src = ["py_maker"] +target-version = "py39" # minimum python version supported + +[tool.ruff.format] +indent-style = "space" +quote-style = "double" + +[tool.ruff.lint] +select = ["ALL"] # we are being very strict! +ignore = [ "ANN101", "PGH003", "FBT002", "FBT003", "B006", ] # These rules are too strict even for us 😝 -lint.extend-ignore = [ - "COM812", - "ISC001", -] # these are ignored for ruff formatting +extend-ignore = ["COM812", "ISC001"] # these are ignored for ruff formatting -src = ["py_maker"] -target-version = "py39" # minimum python version supported - -[tool.ruff.format] -indent-style = "space" -quote-style = "double" [tool.ruff.lint.pep8-naming] classmethod-decorators = ["pydantic.validator", "pydantic.root_validator"]