Skip to content

Commit

Permalink
docs: add test commit type to guidelines (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
manjula-dube authored and ferrannp committed Feb 14, 2018
1 parent 88c522d commit c6ae995
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ You can learn how from this *free* series [How to Contribute to an Open Source P
* `BREAKING`: for changes that break current versiong usage, e.g. remove withTheme
* `docs`: changes into documentation, e.g. add usage example for Button
* `chore`: tooling changes, e.g. change circle ci config
* `test`: for testcases, eg unit, snapshot testing

3. We use `flow`, `eslint` and `prettier`. Be sure that `npm run flow` and `npm run lint -- --fix` give no errors.

Expand All @@ -39,7 +40,7 @@ You can learn how from this *free* series [How to Contribute to an Open Source P

5. In case of doubts, check out the current code. For example, we use the prop `icon` not `iconName`.

6. You can run `yarn run bootstrap` which will install all the dependecies in example & docs folder respectively.
6. You can run `yarn run bootstrap` which will install all the dependencies in example & docs folder respectively.

## Running the example

Expand Down
2 changes: 1 addition & 1 deletion scripts/validate-commit-message.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const TYPES = {
test: true,
chore: true,
revert: true,
breaking: true,
breaking: true
};

function printError(...args) {
Expand Down

0 comments on commit c6ae995

Please sign in to comment.