We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4513dc3 + 30f940e commit b11b433Copy full SHA for b11b433
pyproject.toml
@@ -42,7 +42,7 @@ test = [
42
"pytest-cov",
43
"pytest-mypy",
44
"pytest-enabler >= 2.2",
45
- "pytest-ruff >= 0.2.1",
+ "pytest-ruff >= 0.2.1; sys_platform != 'cygwin'",
46
47
# local
48
"pygments",
ruff.toml
@@ -1,6 +1,7 @@
1
[lint]
2
extend-select = [
3
"C901",
4
+ "PERF401",
5
"W",
6
]
7
ignore = [
@@ -25,7 +26,5 @@ ignore = [
25
26
27
28
[format]
-# Enable preview, required for quote-style = "preserve"
29
-preview = true
30
-# https://docs.astral.sh/ruff/settings/#format-quote-style
+# https://docs.astral.sh/ruff/settings/#format_quote-style
31
quote-style = "preserve"
0 commit comments