Skip to content

Commit 1202aef

Browse files
committed
Add more ruff rules
1 parent e47702a commit 1202aef

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,18 @@ ignore = [
137137
"UP007", # Use `X | Y` for unions (Python 3.10+)
138138
"UP035", # Import from collections.abc (Python 3.9+)
139139
]
140-
pyupgrade = [
141-
true
142-
]
140+
pyupgrade = [true]
141+
142+
#[tool.ruff.lint.isort]
143+
#split-on-trailing-comma = true
143144

144145
[tool.ruff.format]
145146
quote-style = "double"
146147
indent-style = "space"
148+
#preview = true
149+
#docstring-code-format = true
150+
#line-ending = "auto"
151+
#skip-magic-trailing-comma = false
147152

148153
[tool.docformatter]
149154
wrap-summaries = 79

0 commit comments

Comments
 (0)