-
-
Notifications
You must be signed in to change notification settings - Fork 117
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
feat: spell checking with typos
#305
Conversation
- name: Spell check | ||
uses: crate-ci/[email protected] | ||
with: | ||
config: ./.typos.toml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could it be moved into the .GitHub directory to avoid clutter, or can it be used "by default" by running the program locally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the CLI searches for it by default, so yes, it would be used if someone just locally ran typos
in the directory without options
locale = "en-us" | ||
|
||
[default.extend-identifiers] | ||
FilterThreshhold = "FilterThreshhold" # ignore error, it is actually "Paper.FilterThreshhold" in Paper |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can it be ignored per-file instead? Incase someone else types it not refering to the option?
It's quite a narrow case tho
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm afraid not, there'd have to be a separate config
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like and it already caught some typos (even ignoring the bri'sh spellings)
No description provided.