diff --git a/{{cookiecutter.project_name}}/pyproject.toml b/{{cookiecutter.project_name}}/pyproject.toml index e16f9df..97372eb 100644 --- a/{{cookiecutter.project_name}}/pyproject.toml +++ b/{{cookiecutter.project_name}}/pyproject.toml @@ -95,16 +95,6 @@ target-version = "py310" line-length = 79 fix = true -select = [ - "E", "W", # pycodestyle - "F", # pyflakes - "I", # isort - "B", # bugbear - "SIM", # flake8-simplify - "N", # pep8-naming - "UP", # pyupgrade -] - exclude = [ ".git", ".venv", @@ -116,4 +106,15 @@ quote-style = "double" indent-style = "space" line-ending = "auto" +[tool.ruff.lint] +select = [ + "E", "W", # pycodestyle + "F", # pyflakes + "I", # isort + "B", # bugbear + "SIM", # flake8-simplify + "N", # pep8-naming + "UP", # pyupgrade +] + # vim: ft=cfg