Skip to content

Commit b462784

Browse files
committed
fix: ignore E203 in ruff config (conflicts with ruff-format slice style)
1 parent 5b41afb commit b462784

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tool.ruff]
22
preview = true
3-
lint.ignore = ["F722","F841","F821","E402","E501","E902","E713","E741","E714", "E275","E721","E266", "E261"]
3+
lint.ignore = ["F722","F841","F821","E402","E501","E902","E713","E741","E714", "E275","E721","E266", "E261", "E203"]
44

55
[tool.pytest.ini_options]
66
timeout = 90
77
timeout_method = "thread"
88
asyncio_default_fixture_loop_scope = "function"
9-

0 commit comments

Comments
 (0)