Yield generated for 578d9f19-dab7-4e56-83a0-aa380bfce5bf
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

3.1 KiB

Contributing to this project

First of all thank you for expressing interest in this project! 👍
We are very happy to welcome new contributors. 🎉

How can I contribute? 👨‍💻

Report a bug 🐛

If you think you have found a bug, please search [our issue tracker][issues] to see if anyone has already reported it.
If you are the first to have noticed it, please [create an issue][new_issue], and make sure to provide any information that might help us resolve it.
You are welcome to try and fix it by submitting a pull request if you would like to (see Pull requests section for more information).

Feature requests and enhancements

We are open to feature requests, be sure to search [our issue tracker][issues] to see if anyone has already asked for it.
If not, please [create an issue][new_issue] describing what you want, what your use case is, and an example of code.
You are welcome to try and do it yourself by submitting a pull request if you would like to (see Pull requests section for more information).
As immutadot is still a very young project, we are also open to enhancement suggestions; if you think of anything that might help us improve the project, please [create an issue][new_issue] and we will be happy to discuss it with you.

Pull requests ⬆️

Installation 📦

We use yarn as our package manager.
We don't support npm due to the overhead of managing two lock files and the inconsistency of package-lock.json between Linux and MacOS (see npm/npm#17722).
Once you have cloned the project, run yarn to install all the dependencies.

Tests and Code style 👮‍♂️

If you write any code, be sure to write the test that goes with it in a file located at the same place and named <something>.spec.js.
We use tslint to enforce some coding rules (2 spaces indentation, etc.), ideally use an IDE to help you comply with these rules.
We use prettier to have a uniform code style for everybody. It should run on pre commit automatically 🎉.
Before pushing anything, please be sure to check that the tests are OK by running yarn test and that your code complies with the coding rules by running yarn lint && yarn format:check.

Documentation 💡

The better the documentation, the fewer things users will have to wonder about.
We use jsdoc to document our code, if you write any new code please write the documentation with it and try to conform to the existing documention.

emojis 🍻

We really ❤️ emojis, and we would like you to share our ❤️.
Each and every commit message has to be prefixed by an emoji.
Please refer to the gitmoji guide to know which one to use.

Any questions

If you are not sure whether to report a bug or ask for a new feature, or if you just have a question about anything, please [create an issue][new_issue].