Skip to content

Commit afd143a

Browse files
committed
1 parent 8400646 commit afd143a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ fix = true
178178
[tool.ruff.lint]
179179
extend-select = ["ALL"]
180180
ignore = [
181+
# The following rules are ignored permanently for good reasons
181182
"COM", # https://docs.astral.sh/ruff/rules/#flake8-commas-com
182183
"D", # https://docs.astral.sh/ruff/rules/#pydocstyle-d
183184
"E501", # handled by black https://docs.astral.sh/ruff/rules/line-too-long/
@@ -202,6 +203,7 @@ ignore = [
202203
"ERA001", "ANN001", "ANN201", "ANN204", "ANN206", "ANN401", "PLR0402", "PLC0105"
203204
]
204205
"scripts/*" = [
206+
# The following rules are ignored permanently for good reasons
205207
"EM", # https://docs.astral.sh/ruff/rules/#flake8-errmsg-em
206208
"S603", # https://docs.astral.sh/ruff/rules/subprocess-without-shell-equals-true/
207209
]
@@ -222,6 +224,7 @@ ignore = [
222224
"ANN001", "ANN201", "ANN204", "ANN206", "ANN401", "ARG", "ERA", "RUF", "SIM", "TRY", "PT", "NPY", "N", "DTZ", "PLR", "TC", "PGH", "S311", "C901"
223225
]
224226
"tests/test_io.py" = [
227+
# The following rules are ignored permanently for good reasons
225228
"S301", # https://docs.astral.sh/ruff/rules/suspicious-pickle-usage/
226229
]
227230

0 commit comments

Comments
 (0)