-
Notifications
You must be signed in to change notification settings - Fork 11
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
add codespell config, workflow (just to detect typos) and have some typos fixed #70
base: main
Are you sure you want to change the base?
Conversation
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
WalkthroughThe changes across various files in the codebase are primarily focused on correcting spelling errors. These corrections are found in comments, documentation, and markdown files, ensuring clarity and professionalism. A GitHub Actions workflow has also been introduced to automate the detection of spelling mistakes, further maintaining the quality of the codebase. Changes
TipsChat with CodeRabbit Bot (
|
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.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files ignored due to filter (1)
- pyproject.toml
Files selected for processing (7)
- .github/workflows/codespell.yml (1 hunks)
- CONTRIBUTING.md (1 hunks)
- sleap_io/io/labelstudio.py (1 hunks)
- sleap_io/io/nwb.py (3 hunks)
- sleap_io/model/instance.py (2 hunks)
- tests/io/test_nwb.py (1 hunks)
- tests/model/test_instance.py (1 hunks)
Files skipped from review due to trivial changes (6)
- CONTRIBUTING.md
- sleap_io/io/labelstudio.py
- sleap_io/io/nwb.py
- sleap_io/model/instance.py
- tests/io/test_nwb.py
- tests/model/test_instance.py
Additional comments: 1
.github/workflows/codespell.yml (1)
- 1-22: The GitHub Actions workflow for Codespell is correctly set up and should work as intended when triggered by pushes and pull requests to the main branch.
Summary by CodeRabbit
Documentation
Chores