diff --git a/{{cookiecutter.project_slug}}/pyproject.toml b/{{cookiecutter.project_slug}}/pyproject.toml index f9ef33d81867a69427453175611c432118349119..3386de0e58dea98ec6992ae9ddfd1893c1301858 100644 --- a/{{cookiecutter.project_slug}}/pyproject.toml +++ b/{{cookiecutter.project_slug}}/pyproject.toml @@ -22,6 +22,10 @@ exclude = [ ] [tool.ruff.lint] +# Expand basic rules with name and style checks roughly equivalent to flake8 + black + pylint +# Some additional functional errors such as `await` on none async or wrong return types / args. +# More info https://docs.astral.sh/ruff/rules/ +select = ["N", "A", "E", "F", "B", "W", "Q", "PL", "ASYNC", "S", "G", "RET", "ARG", "I"] ignore = ["E203"] [tool.tox]