-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Code quality refinement, prop rename and additional style custo…
…mization support (#12)
- Loading branch information
1 parent
16764f3
commit 492bcac
Showing
35 changed files
with
416 additions
and
2,209 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,22 +14,22 @@ appearance, race, religion, or sexual identity and orientation. | |
Examples of behavior that contributes to creating a positive environment | ||
include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
- Using welcoming and inclusive language | ||
- Being respectful of differing viewpoints and experiences | ||
- Gracefully accepting constructive criticism | ||
- Focusing on what is best for the community | ||
- Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or | ||
advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic | ||
address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
- The use of sexualized language or imagery and unwelcome sexual attention or | ||
advances | ||
- Trolling, insulting/derogatory comments, and personal or political attacks | ||
- Public or private harassment | ||
- Publishing others' private information, such as a physical or electronic | ||
address, without explicit permission | ||
- Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
|
||
## Our Responsibilities | ||
|
||
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers. | |
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting the project team at [email protected]. All | ||
reported by contacting the project team at [email protected]. All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. The project team is | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
|
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!-- Thank you for contributing to @keyvaluesystems/react-scatter-graph! --> | ||
<!-- Before submitting a pull request, please review our contributing guidelines. --> | ||
|
||
| ||
|
||
## Pull Request Checklist | ||
|
||
| ||
|
||
- [ ] **Read the contributing guidelines.** | ||
- [ ] **Linked to an issue:** Fixes # (replace with the issue number, if applicable) | ||
- [ ] **Branch is up-to-date with the base branch:** `master` | ||
- [ ] **Changes pass tests locally:** `npm test` or `yarn test` | ||
- [ ] **Documentation has been updated, if necessary** | ||
- [ ] **Code follows the style guide of the project** | ||
| ||
|
||
## Description | ||
|
||
| ||
|
||
<!-- Provide a brief description of your changes. --> | ||
|
||
| ||
|
||
## Screenshots (if applicable) | ||
|
||
| ||
|
||
<!-- Add screenshots or GIFs to help explain your changes. --> | ||
|
||
| ||
|
||
## Additional Notes | ||
|
||
| ||
|
||
<!-- Any additional information you want to provide that is not covered by the checklist or description. --> | ||
|
||
| ||
|
||
## Related Issues or PRs | ||
|
||
| ||
|
||
<!-- If your pull request is related to any issue(s) or other pull request(s), mention them here. --> | ||
|
||
| ||
|
||
## Reviewer Guidelines | ||
|
||
| ||
|
||
<!-- Suggest specific areas of the codebase that you would like the reviewer to focus on. --> | ||
|
||
| ||
|
||
## Testing Instructions | ||
|
||
| ||
|
||
<!-- Provide step-by-step instructions on how to test your changes. --> | ||
|
||
| ||
|
||
## Checklist for Reviewers | ||
|
||
| ||
|
||
- [ ] Code follows project conventions and style | ||
- [ ] Changes do not introduce new warnings or errors | ||
- [ ] Unit tests cover the changes | ||
- [ ] Documentation is updated | ||
| ||
|
||
## By submitting this pull request, I confirm that my contribution is made under the terms of the MIT License. |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Style Guidelines for @keyvaluesystems/react-scatter-graph | ||
|
||
**Introduction** | ||
|
||
As an open-source project, @keyvaluesystems/react-scatter-graph strives to maintain a consistent and well-structured codebase. These CSS style guidelines serve as a reference for contributors, ensuring that their CSS code adheres to established conventions and best practices. | ||
|
||
**Coding Conventions** | ||
|
||
- Organize CSS files into a logical structure. | ||
- Use meaningful and descriptive names for classes. | ||
- Include comments to explain non-obvious logic and complex styles. | ||
- Should support devices with all resolutions | ||
- Follow CamelCase conventions for class names that concisely convey their purpose, enhancing code organization and readability | ||
- Adhere to the practice of reusing style classes to improve code organization and maintainability. | ||
|
||
**Documentation Practices** | ||
|
||
- Provide clear documentation. | ||
- Include a README file related to styles if necessary. |
Oops, something went wrong.