Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Latest commit

 

History

History
39 lines (27 loc) · 1.88 KB

CONTRIBUTING.md

File metadata and controls

39 lines (27 loc) · 1.88 KB

SmartSweeper Contribution Guidelines

Thank you for being interested in contributing to the development of SmartSweeper.

Code of Conduct

We ask that all contributors follow our code of conduct. Please report unacceptable behavior to [email protected].

How Can I Contribute?

Reporting Bugs

  1. Please check existing issues to make sure the bug hasn't already been reported. If it has and the issue is still open, please add a new comment to the existing issue.
  2. If the bug hasn't been reported, create a new issue by filling in the bug report template. Please include as much information as you can.

Suggesting Enhancements

  1. Please check existing issues to make sure that no one else has suggested the same enhancement. If someone has and the issue is still open, please add a new comment to the existing issue.
  2. If the suggestion hasn't already been made, please follow these guidelines.

Style Guidelines

There are three styles currently in use:

Going forward, all JavaScript will use the W3Schools style with an exception:

  • Conditionals:
if (time < 20) {
    greeting = "Good day";
}
else {
     greeting = "Good evening";
}

This guide was inspired by the Atom contribution guidelines.