We love pull requests. And following this guidelines will make your pull request easier to merge
- Install EditorConfig plugin for your code editor to make sure it uses correct settings.
- Fork the repository and clone your fork.
- Install dependencies:
npm install
.
We make use of standard to lint our code. Standard does not need a config file and comes with set of non-configurable rules.
Always make sure to lint and test your code before pushing it to the GitHub.
npm test
Just lint the code
npm run lint
Make sure you add sufficient tests for the change.
- Do not change version number inside the
package.json
file. - Do not update
CHANGELOG.md
file.
Feel free to ask.