This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Description
I see this:
[tool.ruff]
...
lint.allowed-confusables = [
"×",
"’",
]
lint.flake8-type-checking.exempt-modules = [
]
lint.per-file-ignores."*/__init__.py" = [
"F401",
]
lint.per-file-ignores."docs/*" = [
"I",
]
lint.per-file-ignores."tests/*" = [
"D",
]
and would rather see
[tool.ruff]
...
lint.allowed-confusables = [ "×", "’" ]
lint.flake8-type-checking.exempt-modules = []
lint.per-file-ignores."*/__init__.py" = [ "F401" ]
lint.per-file-ignores."docs/*" = [ "I" ]
lint.per-file-ignores."tests/*" = [ "D" ]
allowed-confusables is like tool.hatch.envs.*.features in that it always contains a short list of strings
lint.per-file-ignores.* too, those lists are always very short
- I think empty lists should just be on one line always, it looks super weird to expand them.