We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 948b99d + 30f940e commit 1a0ad68Copy full SHA for 1a0ad68
pyproject.toml
@@ -46,7 +46,7 @@ test = [
46
"pytest-cov",
47
"pytest-mypy",
48
"pytest-enabler >= 2.2",
49
- "pytest-ruff >= 0.2.1",
+ "pytest-ruff >= 0.2.1; sys_platform != 'cygwin'",
50
51
# local
52
'importlib_resources; python_version < "3.12"',
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