-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: apply Prettier formatting across the codebase
- Loading branch information
Showing
36 changed files
with
5,109 additions
and
474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Thank you for considering contributing to our project! We welcome contributions of all kinds, including code, documentation, bug reports, feature requests, and more. This document outlines the process for contributing to this project. | ||
|
||
## Table of Contents | ||
|
||
- [Contributing to Email Recovery Demo](#contributing-to-email-recovery-demo) | ||
- [Table of Contents](#table-of-contents) | ||
- [1. Code of Conduct](#1-code-of-conduct) | ||
|
@@ -14,6 +15,7 @@ Thank you for considering contributing to our project! We welcome contributions | |
- [7. Contact](#7-contact) | ||
|
||
## 1. Code of Conduct | ||
|
||
We are committed to providing a welcoming and inspiring community for all and expect our Code of Conduct to be honored. Anyone who violates this code of conduct may be banned from the community. | ||
|
||
Our community strives to: | ||
|
@@ -54,24 +56,24 @@ Thank you for helping make this a welcoming, friendly community for all. | |
|
||
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html) | ||
|
||
|
||
## 2. Getting Started | ||
|
||
To start contributing, follow these steps: | ||
|
||
1. Fork the repository. | ||
2. Clone your fork to your local machine: | ||
```bash | ||
git clone https://github.com/zkemail/email-recovery-demo.git | ||
``` | ||
3. Create a new branch for your feature or bugfix: | ||
```bash | ||
git checkout -b feat/your-feature-name | ||
``` | ||
4. Install the necessary dependencies: | ||
```bash | ||
cargo build | ||
``` | ||
5. Make your changes. | ||
```bash | ||
git clone https://github.com/zkemail/email-recovery-demo.git | ||
``` | ||
3. Create a new branch for your feature or bugfix: | ||
```bash | ||
git checkout -b feat/your-feature-name | ||
``` | ||
4. Install the necessary dependencies: | ||
```bash | ||
cargo build | ||
``` | ||
5. Make your changes. | ||
|
||
## 3. Coding Guidelines | ||
|
||
|
@@ -81,8 +83,8 @@ Please follow the coding guidelines in [CODING_GUIDELINES.md](CODING_GUIDELINES. | |
|
||
Please write tests for your contributions. We aim for high test coverage. | ||
|
||
• Unit Tests: Place unit tests in the same file as the code they are testing. | ||
• Integration Tests: Place integration tests in the tests/ directory. | ||
• Unit Tests: Place unit tests in the same file as the code they are testing. | ||
• Integration Tests: Place integration tests in the tests/ directory. | ||
|
||
Run all tests before submitting your code with cargo test. | ||
|
||
|
@@ -99,18 +101,18 @@ For more information, see [Conventional Commits](https://www.conventionalcommits | |
|
||
## 6. Pull Request Process | ||
|
||
1. Ensure your branch is up-to-date with the main branch: | ||
• git fetch origin | ||
• git checkout main | ||
• git merge origin/main | ||
2. Push your branch to your fork: | ||
• git push origin feature/your-feature-name | ||
3. Open a pull request from your branch to the main branch of the original repository. | ||
4. Ensure that your pull request passes all checks (e.g., CI tests). | ||
5. A reviewer will review your pull request. Be prepared to make adjustments based on feedback. | ||
1. Ensure your branch is up-to-date with the main branch: | ||
• git fetch origin | ||
• git checkout main | ||
• git merge origin/main | ||
2. Push your branch to your fork: | ||
• git push origin feature/your-feature-name | ||
3. Open a pull request from your branch to the main branch of the original repository. | ||
4. Ensure that your pull request passes all checks (e.g., CI tests). | ||
5. A reviewer will review your pull request. Be prepared to make adjustments based on feedback. | ||
|
||
## 7. Contact | ||
|
||
If you have any questions or need further assistance, feel free to open an issue or contact us at [[email protected]](mailto:[email protected]). | ||
|
||
Thank you for your contributions! | ||
Thank you for your contributions! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,15 @@ | |
<link rel="icon" type="image/png" href="https://i.imgur.com/46VRTCF.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Safe Email Recovery Demo</title> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap" rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap'); | ||
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap"); | ||
</style> | ||
</head> | ||
<body> | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.