Skip to content

Commit d1c7051

Browse files
committed
ruff now warns about TODO comments (shown in vsc under problems) so that we dont forget about them
1 parent 0c70094 commit d1c7051

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,10 @@ ethereum_test_forks = ["forks/contracts/*.bin"]
118118
line-length = 99
119119

120120
[tool.ruff.lint]
121-
select = ["E", "F", "B", "W", "I", "A", "N", "D", "C"]
121+
select = ["E", "F", "B", "W", "I", "A", "N", "D", "C", "TD"]
122122
fixable = ["I", "B", "E", "F", "W", "D", "C"]
123-
ignore = ["D205", "D203", "D212", "D415", "C901", "A005", "C420"]
123+
ignore = ["D205", "D203", "D212", "D415", "C901", "A005", "C420", "TD003", "TD006"]
124+
124125

125126
[tool.mypy]
126127
mypy_path = ["src", "$MYPY_CONFIG_FILE_DIR/stubs"]

0 commit comments

Comments
 (0)