Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ repos:
)$
- id: trailing-whitespace
exclude: ^frontend/src/client/.*
- repo: https://github.com/crate-ci/typos
rev: bbaefadf97b0ec5fdc942684b647f1a6ab250274 # v1.46.0
hooks:
- id: typos
args: [--force-exclude]

Comment thread
YuriiMotov marked this conversation as resolved.
Outdated
- repo: local
hooks:
- id: local-biome-check
Expand Down
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,18 @@ dev = [
github-actions = [
"smokeshow >=0.5.0",
]

[tool.typos.files]
extend-exclude = [
"img/",
"release-notes.md",
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is just one "typo" (not a typo, actually) in release-notes.md:

  error: `certifi` should be `certify`, `certifies`, `certified`

We could add the word to the list of exceptions and remove file from the extend-exclude.
Do we want to check typos in release-notes.md?

"uv.lock",
"bun.lock",
"backend/coverage/",
"backend/htmlcov/",
"frontend/dist/",
"frontend/public/assets/images/",
]

[tool.typos.default.extend-identifiers]
alls = "alls"
Loading