Skip to content

Commit

Permalink
Replaced select with lint.select in ruff config
Browse files Browse the repository at this point in the history
  • Loading branch information
niksirbi committed Mar 25, 2024
1 parent cef79d5 commit 4e7d5d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.package_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 4e7d5d8

Please sign in to comment.