Contributing to UXUY Connect
We're thrilled that you're interested in contributing to UXUY Connect! This document provides comprehensive guidelines for contributing to the project. By participating in this project, you agree to abide by its terms.
Table of Contents
Code of Conduct
We expect all contributors to follow our Code of Conduct. The main points are:
- Be respectful and inclusive.
- Be collaborative.
- Be patient and welcoming to newcomers.
- Be open-minded.
- Be careful in the words you choose.
If you witness or experience any unacceptable behavior, please report it to the project maintainers at conduct@uxuyconnect.com.
How Can I Contribute?
Reporting Bugs
When you are creating a bug report, please include as many details as possible. Fill out the required template, the information it asks for helps us resolve issues faster.
- Use a clear and descriptive title for the issue to identify the problem.
- Describe the exact steps which reproduce the problem in as many details as possible.
- Provide specific examples to demonstrate the steps. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples.
- Describe the behavior you observed after following the steps and point out what exactly is the problem with that behavior.
- Explain which behavior you expected to see instead and why.
- Include screenshots and animated GIFs which show you following the described steps and clearly demonstrate the problem.
Suggesting Enhancements
Enhancement suggestions are tracked as GitHub issues. When you are creating an enhancement suggestion, please include as many details as possible:
- Use a clear and descriptive title for the issue to identify the suggestion.
- Provide a step-by-step description of the suggested enhancement in as many details as possible.
- Provide specific examples to demonstrate the steps. Include copy/pasteable snippets which you use in those examples, as Markdown code blocks.
- Describe the current behavior and explain which behavior you expected to see instead and why.
- Include screenshots and animated GIFs which help you demonstrate the steps or point out the part of UXUY Connect which the suggestion is related to.
- Explain why this enhancement would be useful to most UXUY Connect users.
- List some other applications where this enhancement exists.
Your First Code Contribution
Unsure where to begin contributing to UXUY Connect? You can start by looking through these good-first-issue
and help-wanted
issues:
- Good first issues - issues which should only require a few lines of code, and a test or two.
- Help wanted issues - issues which should be a bit more involved than
good-first-issue
issues.
Pull Requests
The process described here has several goals:
- Maintain UXUY Connect's quality
- Fix problems that are important to users
- Engage the community in working toward the best possible UXUY Connect
- Enable a sustainable system for UXUY Connect's maintainers to review contributions
Please follow these steps to have your contribution considered by the maintainers:
- Follow the styleguides
- After you submit your pull request, verify that all status checks are passing
While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.
Styleguides
Git Commit Messages
- Use the present tense ("Add feature" not "Added feature")
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Limit the first line to 72 characters or less
- Reference issues and pull requests liberally after the first line
- Consider starting the commit message with an applicable emoji:
- 🎨
:art:
when improving the format/structure of the code - 🐎
:racehorse:
when improving performance - 🚱
:non-potable_water:
when plugging memory leaks - 📝
:memo:
when writing docs - 🐧
:penguin:
when fixing something on Linux - 🍎
:apple:
when fixing something on macOS - 🏁
:checkered_flag:
when fixing something on Windows - 🐛
:bug:
when fixing a bug - 🔥
:fire:
when removing code or files - 💚
:green_heart:
when fixing the CI build - ✅
:white_check_mark:
when adding tests - 🔒
:lock:
when dealing with security - ⬆️
:arrow_up:
when upgrading dependencies - ⬇️
:arrow_down:
when downgrading dependencies - 👕
:shirt:
when removing linter warnings
- 🎨
JavaScript Styleguide
All JavaScript must adhere to JavaScript Standard Style.
Prefer the object spread operator (
{...anotherObj}
) toObject.assign()
Inline
export
s with expressions whenever possible// Use this:
export default class ClassName {
}
// Instead of:
class ClassName {
}
export default ClassNamePlace requires in the following order:
- Built in Node Modules (such as
path
) - Local Modules (using relative paths)
- Built in Node Modules (such as
Place class properties in the following order:
- Class methods and properties (methods starting with
static
) - Instance methods and properties
- Class methods and properties (methods starting with
Documentation Styleguide
- Use Markdown.
- Reference methods and classes in markdown with the custom
{}
notation:- Reference classes with
{ClassName}
- Reference instance methods with
{ClassName::methodName}
- Reference class methods with
{ClassName.methodName}
- Reference classes with
Community
- Join our Telegram group to chat with other community members and developers.
- Follow our Twitter for the latest updates.
- Read and subscribe to The Official UXUY Connect Blog.
Thank you for contributing to UXUY Connect! Your efforts help make our project better for everyone.