Skip to content

Commit

Permalink
chore: check for FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
gouline committed Oct 12, 2024
1 parent e22b208 commit 6728dab
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,14 @@ python_version = "3.8"

[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"FIX001", # flake8-fixme
]
ignore = [
"E501", # line-too-long
Expand Down

0 comments on commit 6728dab

Please sign in to comment.