From 4e7d5d83a3fc8bc457601e39cba06ac231e2b9c5 Mon Sep 17 00:00:00 2001 From: niksirbi Date: Mon, 25 Mar 2024 17:34:20 +0000 Subject: [PATCH] Replaced select with lint.select in ruff config --- pyproject.toml | 2 +- {{cookiecutter.package_name}}/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index abb2f79..1ffc990 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ line-length = 79 [tool.ruff] line-length = 79 exclude = ["__init__.py","build",".eggs"] -select = ["I", "E", "F"] +lint.select = ["I", "E", "F"] fix = true [tool.codespell] diff --git a/{{cookiecutter.package_name}}/pyproject.toml b/{{cookiecutter.package_name}}/pyproject.toml index 628428f..c4d70db 100644 --- a/{{cookiecutter.package_name}}/pyproject.toml +++ b/{{cookiecutter.package_name}}/pyproject.toml @@ -127,7 +127,7 @@ ignore = [ [tool.ruff] line-length = 79 exclude = ["__init__.py","build",".eggs"] -select = ["I", "E", "F"] +lint.select = ["I", "E", "F"] fix = true [tool.tox]