Skip to content

Commit

Permalink
BUG: B950 not supported by ruff, line lengths are now law
Browse files Browse the repository at this point in the history
  • Loading branch information
tangkong authored Sep 5, 2024
1 parent 174ba46 commit 903ced7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions {{ cookiecutter.folder_name }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,10 @@ addopts = "--cov=."

[tool.ruff]
line-length = 88
exclude = [".git", "__pycache__", "build", "dist",
"{{ cookiecutter.import_name }}/_version.py"]
exclude = [".git", "__pycache__", "build", "dist", "{{ cookiecutter.import_name }}/_version.py"]

[tool.ruff.lint]
select = ["C", "E", "F", "W", "B", "B950"]
select = ["C", "E", "F", "W", "B"]

[tool.ruff.lint.pydocstyle]
convention = "numpy"

0 comments on commit 903ced7

Please sign in to comment.