Skip to content

Latest commit

 

History

History
92 lines (68 loc) · 3.59 KB

CONTRIBUTING.md

File metadata and controls

92 lines (68 loc) · 3.59 KB

Contributing Guidelines

First off, thanks for taking the time to contribute!

Please read through our Architecture Overview and Installation Instructions.

Getting Started

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the core team before making a change.

  • Make sure you have a GitHub account.
  • Submit a GitHub issue for your issue if one does not already exist.
    • A issue is not necessary for trivial changes.
  • Fork the repository on GitHub.
  • When working on an issue, create a new branch from main named for issue number or custom name. Name the branch issue/<issue-number> or issue/<custom-name>. For example issue/22 for fixing issue #22.
  • Make your changes.
  • Create a pull request to the repository.

Tips and tricks for using the Git

Key branches

  • main is the latest, deployed version

Cloud AI Code Helpers

Style Guides

Git Commit Messages

  • Include an issue number to the beginning of the first line (if applicable). Example #234 YOUR_COMMIT_NAME.
  • Use the present tense ("Add feature" not "Added feature").
  • Use the imperative mood ("Move cursor to..." not "Moves cursor to...").
  • In case changing only texts or documentations include [ci skip] to the end of the first line.
  • Limit the first line to 72 characters or less.
  • Reference issues and pull requests liberally after the first line.

Documentation Style Guide

All *.md files must adhere to Markdown Syntax.

JavaScript Style Guide

JavaScript Code MUST adhere to JavaScript Standard Style.

Recommended IDE:

  // Use this:
  export default class ClassName {

  }

  // Instead of:
  class ClassName {

  }
  export default ClassName