Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 2.44 KB

CONTRIBUTING.md

File metadata and controls

61 lines (50 loc) · 2.44 KB

Contributing to fa-picker

First off, thanks for taking the time to contribute!

Now, take a moment to be sure your contributions make sense to everyone else. These are just guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

Reporting Issues

Found a problem? Want a new feature? First of all see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.

Submitting pull requests

Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.

  • Fork it!
  • Clone your fork: git clone https://github.com/<your-username>/fa-picker
  • Navigate to the newly cloned directory: cd fa-picker
  • Create a new branch for the new feature: git checkout -b my-new-feature
  • Install the tools necessary for development: npm install
  • Make your changes.
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request with full remarks documenting your changes.

Testing

Every time you write a test, remember to answer all the questions:

  1. What are you testing?
  2. What should it do?
  3. What is the actual output?
  4. What is the expected output?
  5. How can the test be reproduced?

Code Style

Follow the xo style. Using two spaces for identation and no semicolons.

Commit Message Emoji

Every commit is important. So let's celebrate each and every commit with a corresponding emoji! 😄

Which Emoji to Use? 😕

Commit Type Emoji
Initial Commit 🎉 :tada:
Improve the format/structure of the code 🎨 :art:
Improving performance 🐎 :racehorse:
Writing docs 📝 :memo:
Fix a bug 🐛 :bug:
Remove code or files 🔥 :fire:
Fix CI build 💚 :green_heart:
Deal with security 🔒 :lock:
Upgrade dependencies ⬆️ :arrow_up:
Downgrading dependencies ⬇️ :arrow_down:
Add tests :umbrella:
Improving accessibility :wheelchair:
Add new features :sparkles:
Refactoring 📦 :package:
Other Be creative