Update `.ruff.toml` post-move

This commit is contained in:
Adam Turner
2023-12-26 03:10:23 +00:00
parent 688352b8d6
commit 581eea0a1e

View File

@@ -1,4 +1,3 @@
[tool.ruff]
target-version = "py39" # Pin Ruff to Python 3.9
line-length = 95
show-source = true
@@ -190,7 +189,7 @@ select = [
"E275", # Missing whitespace after keyword
]
[tool.ruff.per-file-ignores]
[per-file-ignores]
"doc/conf.py" = ["INP001"]
"doc/development/tutorials/examples/*" = ["INP001"]
# allow print() in the tutorial
@@ -228,5 +227,5 @@ select = [
# whitelist ``print`` for stdout messages
"utils/*" = ["T201"]
[tool.ruff.flake8-quotes]
[flake8-quotes]
inline-quotes = "single"