We welcome all contributions from folks who are willing to work in good faith with the community. No contribution is too small and all contributions are valued.
Issues in spacemeshos/app
are the primary means by which bug reports and
general discussions are made. A contributor is allowed to create an issue,
discuss and provide a fix if needed.
Please join our Gitter channel for general discussions/help.
Pull Requests are the way in which concrete changes are made to the code.
node
>=8
(LTS recommended)npm
Fork the project on GitHub and clone your fork locally.
git clone [email protected]:spacemeshos/app.git
cd app
git remote add upstream https://github.com/spacemeshos/app.git
git fetch upstream
It's always better to create local branches to work on a specific issue. Makes
life easier for you if you are the kind who enjoys multiple things parallely.
These should also be created directly off of the develop
branch.
git checkout -b feature -t upstream/develop
To keep the style of the Javascript code consistent we have a basic linting configured. To check your contributed code for errors and also to automatically fix them:
npm run lint
- Use the pre-configured eslint for Javascript
- Avoid trailing whitespace & un-necessary white lines
- Indentation is as follows
- 1 tab = 2 spaces for
.html
and.js
files - 1 tab = 4 spaces for everything else
- 1 tab = 2 spaces for
- Add relevant unit tests for all new logic and update existing tests to accommodate new logic.
- Plase document each type, method, class or interface in your code
- Pleae write unit tests to each function and type
- For Typescript code, pleae make sure you tlint qll your new or modified code before submitting a PR
-
List all your changes as a list if needed else simply give a brief description on what the changes are.
-
All lines at 100 columns.
-
If your PR fixed an issue, Use the
Fixes:
prefix and the full issue URL. For other references useRefs:
.Examples:
Fixes: https://github.com/spacemeshos/app/issues/1
Refs: https://github.com/spacemeshos/app/issues/1
-
Sample commit A
if you can write down the changes explaining it in a paragraph which each line wrapped within 100 lines. Fixes: https://github.com/spacemeshos/app/issues/1 Refs: https://github.com/spacemeshos/app/issues/1
Sample commit B
- list out your changes as points if there are many changes - if needed you can also send it across as - all wrapped within 100 lines Fixes: https://github.com/spacemeshos/app/issues/1 Refs: https://github.com/spacemeshos/app/issues/1
-
Squashing and Merging your commits to make our history neater is always welcomed, but squashing can be handled during the merge process.
As a best practice, once you have committed your changes, it is a good idea
to use git rebase
(not git merge
) to ensure your changes are placed at the
top. Plus merge conflicts can be resolved
git fetch upstream
git rebase upstream/develop
Please ensure that your pull request follows all of the community guidelines to include:
- Title is descriptive and generally focused on what the PR addresses (If your PR is a work in progress, include
WIP
in the title. Once the PR is ready for review, please removeWIP
) - Description explains what the PR achieves/addresses
- If the PR modifies the UI in any way, please attach screenshots of all purposeful changes (before and after screens are recommended)
- You must write unit tests for each new function, method and component you add and make sure you get to +90% test coverage. This is critical for high-quality code
- You must write integration tests for each new flow / feature you add or modeify
- You must make sure that all exisiting tests pass before submitting a new PR
- You must write UI tests for all new UI functionality
- The latest develop branch code is merged into your work branch
- All new code is properly documented
- Unit tests for all new functions and methoods
- Intergration tests for all new flows
- UI tests for all new UI widgets
- All new code is fully linted
- All targets compile on your branch
- Follow closely the coding style present in the codebase
- All methods, models, types and interfaces must be documented via short and simple text comments
- All Typescript code must pass tslint
- There should be unit tests and integration tests for all implemented functionality
- The test coverage should be greater than 90%
- Use Jest testing suite