feat: add ruff toml

This commit is contained in:
2025-03-29 22:27:52 +01:00
parent 8312cc5925
commit 8608f11bb4
+42
View File
@@ -0,0 +1,42 @@
line-length = 80
target-version = "py313"
preview = true
[lint]
select = [
"YTT",
"ANN",
"ASYNC",
"B",
"A",
"COM",
"C4",
"DTZ",
"T10",
"FIX",
"FA",
"ISC",
"PIE",
"PYI",
"PT",
"RET",
"SIM",
"TC",
"I",
"C90",
"DOC",
"D",
"F",
"PL",
"UP",
"RUF"
]
ignore = [
"D203",
"D301",
"D101",
"D202",
"TC006",
"COM812"
]