Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 992 Bytes

CONTRIBUTING.md

File metadata and controls

13 lines (9 loc) · 992 Bytes

Contributing to FormulaParser

Your contributions to the project are very welcome. If you would like to fix a bug or propose a new feature, you can submit a Pull Request.

To help us merge your Pull Request, please make sure you follow these points:

  1. Please make your fix on a separate branch based on develop branch. This makes merging much easier.
  2. Do not edit files in dist/ directory (e.g: formula-parser.js, formula-parser.min.js). Instead, edit files inside the src/ directory and then use gulp or npm scripts to make a build.
  3. Very important: For any change that you make, please try to also add a test case(s) in tests/unit/ or test/integration/. This helps us understand the issue and make sure that it will stay fixed forever.
  4. Describe the problem in the Pull Request description (of course you would do it, why do I mention that?).
  5. Very important: Make Pull Request ready to merge into develop branch.

Thank you for your commitment!