We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2791e2b commit afe00efCopy full SHA for afe00ef
1 file changed
AGENTS.md
@@ -1,12 +1,13 @@
1
# Developer Instructions
2
3
## Code Style
4
-- Run `ruff check .` before committing to ensure all Python code passes linting.
+- Run `uv run ruff check .` before committing to ensure all Python code passes linting.
5
- Write clear docstrings for all public functions and classes.
6
- Use relative imports within the `jetplot` package.
7
8
## Testing
9
-- Execute `pytest` and ensure all tests pass before submitting a PR.
+- Run `uv run pytest --cov=jetplot --cov-report=term` before committing to ensure all tests pass before submitting a PR.
10
+- Run `uv run pyrefly check` before committing to ensure all pyrefly type checking passes.
11
12
## PR Guidelines
13
- Your pull request description must contain a **Summary** section explaining the changes.
0 commit comments