Please always feel free to reach out to us via E-Mail ([email protected]) to report any bug, to give feedbag or to receive support.
There are various other ways to contribute to the Sketch Map Tool:
- Help to translate the Sketch Map Tool via crowdin. If you have an active community using the Sketch Map Tool using a currently unsupported language, feel free to reach out to us, so we can talk about adding it.
- Create issues to report bugs or suggest new features.
- Create pull requests to address issues.
Bugs reports and enhancement suggestions are tracked via issues. Each issue should contain following information:
- A clear and descriptive title
- Description
- Current behavior and expected behavior
- Error message and stack trace
Issues should serve as the basis for creating a pull request. They should have at least one tag associated with them.
Pull requests (PR) are created to address one single issue or multiple. Either the assignee or the creator of the PR is responsible for merging. Each PR has to be approved by at least one reviewer before merging it. A person can be assigned as reviewer by either mark them as such or asking for a review by tagging the person in the description/comment of the PR.
A draft pull request can be made even if the branch is not ready to be merged yet. This way people/reviewer know that there is someone still working on that branch actively. This gives them the opportunity share their thoughts knowing that the pull request is still subject to change and does not need a full review yet.
The CHANGELOG.md describes changes made in a pull request. It should contain a short description of the performed changes, as well as (a) link(s) to issue(s) or pull request.
- Dev makes a PR.
- Rev reviews and raises some comments if necessary.
- Dev addresses the comments and leaves responses explaining what has to be done. In cases where Dev just implemented Rev's suggestion, a simple "Done" is sufficient.
- Rev reviews the changes and
- If Rev is happy with a change, then Rev resolves the comment.
- If Rev is still unsatisfied with a change, then Rev adds another comment explaining what is still missing.
- Restart from 3 until all comments are resolved.
- If all issues are resolved the PR gets marked as approved and can be merged.
All development work is based on the main branch (main
). Pull requests are expected to target the main
branch.
In short:
- Guideline: PEP8, PEP 484 (Type Hints)
This project uses ruff
to ensure consistent code style.
ruff check --fix
ruff format
In short:
- Guide: Airbnb JavaScript Style Guide
- Linter: eslint and stylelint
This project uses eslint (see .eslintrc.json
) and stylelint (see stylelintrc.json
)
Run those linter's with following commands:
# print linting errors to the console
npm run lint
# try to fix the above mentioned problems
npm run lint:fix
pre-commit is set up to run above mentioned tools (linters and formatters) prior to any git commit. In contrast to above described commands running these hooks will not apply any changes to the code base. Instead, 'pre-commit' checks if there would be any changes to be made.
Tip: To run all hooks once execute pre-commit run --all-files