Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 814 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (14 loc) · 814 Bytes

Contributing Guidelines

Editor Config

  • This project uses EditorConfig to maintain consistent coding styles.
  • The styles for this project are defined in .editorconfig.
  • Download the plugin for your preferred text editor here.

Coding Style

  • Variable names should be in camel case.
  • Single quotes '' for strings & characters in JavaScript.

Contributing Rules

  • Follow the GitHub Flow.
    • Branch/Fork → Commit → Pull Request [→ Merge]
  • Commit messages should be in title case & descriptive.
  • Comment out or delete debug statements (e.g. console.log()) when committing.
  • Make sure you haven't broken anything that was previously working.