Browse Source

🔧 Enable checking `release-notes.md` for typos (#15796)

pull/15799/head
Yurii Motov 2 weeks ago
committed by GitHub
parent
commit
22f99d9ad3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      pyproject.toml

11
pyproject.toml

@ -319,7 +319,6 @@ extend-exclude = [
"docs/de/",
"docs/en/data/",
"docs/en/docs/img/",
"docs/en/docs/release-notes.md",
"docs/es/",
"docs/fr/",
"docs/ja/",
@ -340,6 +339,16 @@ extend-exclude = [
"uv.lock",
]
[tool.typos.default]
extend-ignore-re = [
# GitHub usernames in @mentions
"@[a-zA-Z0-9](?:-?[a-zA-Z0-9])*",
# Quoted typo documented in a release note
"'wll' to 'will'",
# German article title in a release note
"FastAPI Modul.",
]
[tool.typos.default.extend-identifiers]
alls = "alls"

Loading…
Cancel
Save