Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: adding spell-check using typos in CI pipeline #106

Merged
merged 1 commit into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ jobs:
echo `ruff --version`
ruff check pdfly/

- name: Spell Check Repo
uses: crate-ci/[email protected]

package:
name: Build & verify package
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[default]
extend-ignore-identifiers-re = [
"FlateDecode",
]
4 changes: 2 additions & 2 deletions docs/meta/project-governance.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tool.
request, but that is up to the maintainer. Other contributors describe issues,
help to ask questions on existing issues to make them easier to answer,
participate in discussions, and help to improve the documentation. Contributors
are similar to maintainers, but without technial permissions.
are similar to maintainers, but without technical permissions.
* A **user** is a person who imports pdfly into their code. All pdfly users
are developers, but not developers who know the internals of pdfly. They only
use the public interface of pdfly. They will likely have less knowledge about
Expand Down Expand Up @@ -102,7 +102,7 @@ An issue is any technical description that aims at bringing pdfly forward:
* Performance tickets: pdfly could be faster - let us know about your specific
scenario.

Any comment that is in those technial descriptions which is not helping the
Any comment that is in those technical descriptions which is not helping the
discussion can be deleted. This is especially true for "me too" comments on bugs
or "bump" comments for desired features. People can express this with 👍 / 👎
reactions.
Expand Down
Loading