Skip to content

Commit

Permalink
increase line length and reformat select parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
m-reuter committed Sep 2, 2024
1 parent 8e4f4ac commit be97707
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ match-dir = '^FastSurferCNN.*,^CerebNet.*,^recon-surf.*'
add_ignore = 'D100,D104,D107'

[tool.ruff]
line-length = 88
line-length = 120
extend-exclude = [
"build",
"checkpoints",
Expand All @@ -120,18 +120,12 @@ extend-exclude = [
[tool.ruff.lint]
# https://docs.astral.sh/ruff/linter/#rule-selection
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
# "SIM",
# isort
"I",
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"I", # isort
# "SIM", # flake8-simplify
]

[tool.ruff.lint.per-file-ignores]
Expand Down

0 comments on commit be97707

Please sign in to comment.