-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(contributing): add file [skip ci]
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Contributing to yahoo-finance2 | ||
|
||
## Development Guidelines | ||
|
||
**Default branch: devel** | ||
|
||
All PRs should be submitted against the `devel` branch (github default). | ||
|
||
**Changing TypeScript Interfaces** | ||
|
||
Run `yarn generateSchema` after changing any interfaces, this will regenerate | ||
the `schema.json` file which is used for run-time tests. | ||
|
||
**Commit Messages** | ||
|
||
Commit messages should follow the | ||
[conventionalcommits](https://www.conventionalcommits.org/) standard | ||
(basically Angular). This is important as we use | ||
[semantic-release](https://github.com/semantic-release/semantic-release) | ||
to automate releases and [CHANGELOG](./CHANGELOG.md) entries when we merge | ||
back to master. |