Skip to content

Commit dbdcd73

Browse files
committed
chore: bump ruff target version to 3.10
Also add temporary ignores for some upgrade rules, as there are 1017 corresponding errors.
1 parent 77bfb95 commit dbdcd73

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

ruff.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ lint.ignore = [
4141
"A005",
4242
"TC006", # https://docs.astral.sh/ruff/rules/runtime-cast-value/
4343
"PLC0415", # https://docs.astral.sh/ruff/rules/import-outside-top-level/
44+
"UP006",
45+
"UP007",
46+
"UP035",
47+
"UP045",
4448
]
4549

4650
# Exclude files and directories
@@ -62,7 +66,7 @@ exclude = [
6266
# Maximum line length
6367
line-length = 120
6468

65-
target-version = "py38"
69+
target-version = "py310"
6670

6771
fix = true
6872
lint.fixable = ["I", "COM812", "W"]

0 commit comments

Comments
 (0)