Thank you for considering contributing to @onlang-org/onst-schemastore! Your contributions help improve the functionality and usability of this tool.
If you would like to contribute to @onlang-org/onst-schemastore, follow these steps:
-
Fork the repository.
-
Create a new branch to work on your changes:
git checkout -b feature/my-feature
-
Make your changes and commit them:
git add . git commit -m "Add new feature"
-
Push your changes to your fork:
git push origin feature/my-feature
-
Open a pull request (PR) against the
main
branch of the original repository.
To ensure a smooth review process, make sure your pull request includes the following:
- A clear and descriptive title for your PR.
- Detailed description of the changes made.
- Code that adheres to the project's coding standards.
- Unit tests (if applicable).
- Documentation updates (if applicable).
If you want to add new entities to the schema list, follow these steps:
-
Locate the
schemaList.json
file in the repository. -
Edit the file to include your new entity. Follow the existing format:
[ { "EntityName": "regex_pattern" } ]
Replace "EntityName" with the name of your entity and "regex_pattern" with the appropriate regular expression pattern.
-
Submit a pull request with your changes. Please refer to pull_request_template.md for more details.
Please review and adhere to our Code of Conduct while participating in this project.
If you have questions or encounter issues, please create an issue.
Thank you for contributing to @onlang-org/onst-schemastore!