-
Notifications
You must be signed in to change notification settings - Fork 5
Added CONTRIBUTING.md File #65 #72
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
659c222
Added CONTRIBUTING.md File #65
sidharth-vijayan ddbb9fc
Added CONTRIBUTING.md File #65
sidharth-vijayan 0da678c
Merge pull request #1 from sidharth-vijayan/sidharth-vijayan-patch-1
sidharth-vijayan 4d93438
Update CONTRIBUTING.md with new guidelines
naheel0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,150 @@ | ||
| # Contributing Guide | ||
|
|
||
| Thank you for your interest in contributing to this project! ๐ | ||
| We welcome contributions from everyoneโwhether you're fixing bugs, improving documentation, or adding new features. | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ Getting Started | ||
|
|
||
| ### 1. Fork the Repository | ||
|
|
||
| * Click the **Fork** button at the top right of this repository. | ||
| * This creates a copy of the project under your GitHub account. | ||
|
|
||
| ### 2. Clone Your Fork | ||
|
|
||
| ```bash | ||
| git clone https://github.com/BeyteFlow/errlens | ||
| cd errlens | ||
| ``` | ||
|
|
||
| ### 3. Set Up the Project | ||
|
|
||
| Follow the project-specific setup instructions (if applicable): | ||
|
|
||
| ```bash | ||
| # Example | ||
| npm install | ||
| # or | ||
| pip install -r requirements.txt | ||
| ``` | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ฑ Creating a Branch | ||
|
|
||
| Always create a new branch before making changes: | ||
|
|
||
| ```bash | ||
| git checkout -b feature/your-feature-name | ||
| ``` | ||
|
|
||
| Branch naming conventions: | ||
|
|
||
| * `feature/...` for new features | ||
| * `fix/...` for bug fixes | ||
| * `docs/...` for documentation updates | ||
|
|
||
| --- | ||
|
|
||
| ## โ๏ธ Making Changes | ||
|
|
||
| * Keep your changes small and focused. | ||
| * Write clear and meaningful commit messages. | ||
|
|
||
| Example: | ||
|
|
||
| ```bash | ||
| git commit -m "Add user authentication feature" | ||
| ``` | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ฏ Coding Standards | ||
|
|
||
| Please follow these general guidelines: | ||
|
|
||
| * Write clean and readable code | ||
| * Use meaningful variable and function names | ||
| * Follow consistent formatting | ||
| * Add comments where necessary | ||
| * Keep functions small and modular | ||
|
|
||
| ### Best Practices | ||
|
|
||
| * Avoid code duplication | ||
| * Write reusable components/functions | ||
| * Handle errors gracefully | ||
| * Ensure your code does not break existing functionality | ||
|
|
||
| --- | ||
|
|
||
| ## โ Testing | ||
|
|
||
| Before submitting your changes: | ||
|
|
||
| * Run existing tests (if available) | ||
| * Add new tests for new features (if applicable) | ||
| * Make sure everything works as expected | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ค Submitting a Pull Request | ||
|
|
||
| ### 1. Push Your Changes | ||
|
|
||
| ```bash | ||
| git push origin feature/your-feature-name | ||
| ``` | ||
|
|
||
| ### 2. Open a Pull Request | ||
|
|
||
| * Go to your fork on GitHub | ||
| * Click **Compare & Pull Request** | ||
| * Provide a clear description of your changes | ||
|
|
||
| ### 3. Pull Request Guidelines | ||
|
|
||
| * Describe what you changed and why | ||
| * Reference related issues (if any) | ||
| * Keep PRs focused and concise | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ Reporting Issues | ||
|
|
||
| When creating an issue, please include: | ||
|
|
||
| * A clear and descriptive title | ||
| * Steps to reproduce the issue | ||
| * Expected vs actual behavior | ||
| * Screenshots (if applicable) | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ Contribution Workflow | ||
|
|
||
| 1. Fork the repository | ||
| 2. Clone your fork | ||
| 3. Create a new branch | ||
| 4. Make your changes | ||
| 5. Commit and push | ||
| 6. Submit a Pull Request | ||
| 7. Address review feedback (if any) | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ Project-Specific Rules | ||
|
|
||
| * Do not commit sensitive information (API keys, passwords, etc.) | ||
| * Keep dependencies minimal and necessary | ||
| * Update documentation when needed | ||
| * Follow existing project structure and patterns | ||
|
|
||
| --- | ||
|
|
||
| ## ๐ Thank You! | ||
|
|
||
| Your contributions help improve this project for everyone. | ||
| We appreciate your time and effort! ๐ | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.