Skip to content

Latest commit

 

History

History
46 lines (24 loc) · 2.94 KB

CONTRIBUTING.md

File metadata and controls

46 lines (24 loc) · 2.94 KB

Contributing

Thank you for taking the time to contribute! 🎉👍

The following is a set of guidelines for contributing to the RML Mapping Editor, which is hosted in the Comake Organization on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

Please read our Code of Conduct to keep our community approachable and respectable.

To get an overview of the project, read the README.

The repository is available at https://github.com/comake/rml-mapping-editor

Pull Requests

All changes should be done through Pull Requests.

We recommend first searching for existing Issues related to your problem. If one does not exist, create a new Issue to discuss a possible solution to reduce the amount of changes that will be requested.

After coming to consensus with maintainers, create a Fork of the repo and implement your code changes and test.

In case any of your changes are breaking, make sure you target the next major branch (versions/x.0.0) instead of the main branch. Breaking changes include: changing interface/class signatures, potentially breaking external custom configurations, and breaking how internal data is stored. In case of doubt you probably want to target the next major branch.

Writing Code

The RML Mapping Editor is fully written in Typescript.

We make use of Conventional Commits .

We use Husky to enforce strict requirements from the linter and the test coverage before a PR is valid. These are configured to run automatically when trying to commit to git.

If a list of entries is alphabetically sorted, such as index.ts, make sure it stays that way.