Skip to content

Commit f741531

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

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
@@ -119,9 +119,10 @@ ethereum_test_forks = ["forks/contracts/*.bin"]
119119
line-length = 99
120120

121121
[tool.ruff.lint]
122-
select = ["E", "F", "B", "W", "I", "A", "N", "D", "C"]
122+
select = ["E", "F", "B", "W", "I", "A", "N", "D", "C", "TD"]
123123
fixable = ["I", "B", "E", "F", "W", "D", "C"]
124-
ignore = ["D205", "D203", "D212", "D415", "C901", "A005", "C420"]
124+
ignore = ["D205", "D203", "D212", "D415", "C901", "A005", "C420", "TD003", "TD006"]
125+
125126

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

0 commit comments

Comments
 (0)