We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 28fe78d + 30f940e commit baf8830Copy full SHA for baf8830
pyproject.toml
@@ -36,7 +36,7 @@ test = [
36
"pytest-cov",
37
"pytest-mypy",
38
"pytest-enabler >= 2.2",
39
- "pytest-ruff >= 0.2.1",
+ "pytest-ruff >= 0.2.1; sys_platform != 'cygwin'",
40
41
# local
42
"pmxbot",
ruff.toml
@@ -1,6 +1,7 @@
1
[lint]
2
extend-select = [
3
"C901",
4
+ "PERF401",
5
"W",
6
]
7
ignore = [
@@ -22,7 +23,5 @@ ignore = [
22
23
24
25
[format]
-# Enable preview, required for quote-style = "preserve"
26
-preview = true
27
-# https://docs.astral.sh/ruff/settings/#format-quote-style
+# https://docs.astral.sh/ruff/settings/#format_quote-style
28
quote-style = "preserve"
0 commit comments