Skip to content

Commit

Permalink
doc: update doc about branches
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentC35 committed Oct 13, 2023
1 parent d9dfa32 commit 5de8669
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,16 @@ To facilitate expression execution, an `executeExpression()` method is exposed i

## Convention and Best Practices

### Stable Branchs

- Stable branches follow the glob pattern `'[0-9]+.[0-9]+'`, like `2.6` or `2.7`.
- We can maintain if needs, the old stable branches
- `main` branch corresponding to the latest release
- `develop` branch is temporarily maintained. (actually `develop` is the `2.7` branch = the future main release)
- `develop` branch will be deleted soon with this new convention

### Commits and feature branches

- Avoid "default" exports as it impairs readability during import.
- Comments in the code should be in English.
- Files containing JSX should use the .jsx (or .tsx) extension.
Expand Down

0 comments on commit 5de8669

Please sign in to comment.