-
Notifications
You must be signed in to change notification settings - Fork 26
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
Start using codespell
#81
Start using codespell
#81
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #81 +/- ##
==========================================
- Coverage 54.03% 0.00% -54.04%
==========================================
Files 25 25
Lines 3046 3055 +9
==========================================
- Hits 1646 0 -1646
- Misses 1400 3055 +1655
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
69fd4f1
to
1359c3c
Compare
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.
This means I misspelled "precedence" across multiple repos haha
We should probably enable |
codespell
is a tool which is designed to check for misspelled words in source code. This PR sets up a reasonable configuration forcodespell
, fixes all the errorscodespell
uncovered, and addscodespell
to the basic style checks forstpipe
. Note thatcodespell
can both autofix many common misspellings and be configured to ignore some misspellings by adding words to theignore-words-list
in thepyproject.toml
file.Note that this PR is built on top of the changes in #80 and so should be merged after PR #80