Skip to content

Commit

Permalink
comment out ruff 'I'
Browse files Browse the repository at this point in the history
  • Loading branch information
boxydog committed Oct 19, 2024
1 parent d050109 commit b44a8ae
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ target-version = "py312"

[tool.ruff.lint]
select = [
# default Ruff checkers as of ruff 0.1.3: E4, E7, E9, F
"E4",
"E7",
"E9",
# "F" contains autoflake, see https://github.com/astral-sh/ruff/issues/1647
"F", # pyflakes
# default Ruff checkers as of ruff 0.1.3: E4, E7, E9, F
"E4",
"E7",
"E9",
# "F" contains autoflake, see https://github.com/astral-sh/ruff/issues/1647
"F", # pyflakes

"I", # isort
# Can't add "I" until all code passes
# TODO: "I", # isort
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit b44a8ae

Please sign in to comment.