We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 62e9e63 + 30f940e commit 912088dCopy full SHA for 912088d
pyproject.toml
@@ -33,7 +33,7 @@ test = [
33
"pytest-cov",
34
"pytest-mypy",
35
"pytest-enabler >= 2.2",
36
- "pytest-ruff >= 0.2.1",
+ "pytest-ruff >= 0.2.1; sys_platform != 'cygwin'",
37
38
# local
39
]
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