Skip to content

Commit

Permalink
Merge pull request #114 from neuroinformatics-unit/update-ruff-config
Browse files Browse the repository at this point in the history
Replaced select with lint.select in ruff config
  • Loading branch information
alessandrofelder authored Apr 26, 2024
2 parents dba05b2 + 4e7d5d8 commit 6919544
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 6919544

Please sign in to comment.