"vscode:/vscode.git/clone" did not exist on "52f977992bdf73ffde3fda4a74ba12d03279ad88"
Commit b878b073 authored by zhiwei.dong's avatar zhiwei.dong Committed by Yang Yong(雍洋)
Browse files

[feature]: add issue and pr template, add docs placeholder

parent 700e7085
---
name: Bug Report
about: Use this template to report bugs in the project.
title: "[Bug] "
labels: bug
assignees: ''
---
### Description
Briefly describe the bug you encountered.
### Steps to Reproduce
1. First step of the operation.
2. Second step of the operation.
3. ...
### Expected Result
Describe the normal behavior you expected.
### Actual Result
Describe the abnormal situation that actually occurred.
### Environment Information
- Operating System: [e.g., Ubuntu 22.04]
- Commit ID: [Version of the project]
### Log Information
Please provide relevant error logs or debugging information.
### Additional Information
If there is any other information that can help solve the problem, please add it here.
## Contributing Guidelines
We have prepared a `pre-commit` hook to enforce consistent code formatting across the project. If your code complies with the standards, you should not see any errors, you can clean up your code following the steps below:
1. Install the required dependencies:
```shell
pip install ruff pre-commit
```
2. Then, run the following command before commit:
```shell
pre-commit run --all-files
```
3. Finally, please double-check your code to ensure it complies with the following additional specifications as much as possible:
- Avoid hard-coding local paths: Make sure your submissions do not include hard-coded local paths, as these paths are specific to individual development environments and can cause compatibility issues. Use relative paths or configuration files instead.
- Clear error handling: Implement clear error-handling mechanisms in your code so that error messages can accurately indicate the location of the problem, possible causes, and suggested solutions, facilitating quick debugging.
- Detailed comments and documentation: Add comments to complex code sections and provide comprehensive documentation to explain the functionality of the code, input-output requirements, and potential error scenarios.
Thank you for your contributions!
......@@ -22,3 +22,6 @@
*.pid
*.ipynb*
*.mp4
# just4dev
devscripts/
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment