-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: fix react version * feat: add object and array newline rules (#29) Co-authored-by: Tim Streicher <[email protected]> * fix(ci): release stuck (#32) * Update README.md * add images * fix(all): add keyword react * fix(react): set react version setting to "detect" (#30) * feat: provide initial react eslint config * docs: add README for react config * fix: update package.json * fix(#27): set react version setting to "detect" Co-authored-by: Ulf Gerking <[email protected]> Co-authored-by: Intervention128 <[email protected]> * fix: fixes issue #35 (#36) Co-authored-by: Ulf Gerking <[email protected]> Co-authored-by: Tim Streicher <[email protected]> * fix: fixes issue #37 * docs: add CONTRIBUTING.md (#34) Co-authored-by: Merlin Flach <[email protected]> Co-authored-by: Robin Kehl <[email protected]> Co-authored-by: Tim Streicher <[email protected]> Co-authored-by: OrbisK <[email protected]> Co-authored-by: Ulf Gerking <[email protected]> Co-authored-by: Intervention128 <[email protected]> Co-authored-by: Moerlin1337 <[email protected]> Co-authored-by: Merlin Flach <[email protected]>
- Loading branch information
1 parent
75ec756
commit 24c0d2b
Showing
3 changed files
with
57 additions
and
2 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,46 @@ | ||
# Contributing | ||
|
||
- [Development Setup](#development-setup) | ||
- [Commits](#commits) | ||
- [Pull Requests](#pull-requests) | ||
|
||
[//]: # (- [Tests](#tests)) | ||
[//]: # (- [Storybook](#storybook)) | ||
|
||
## Development Setup | ||
You will need [Node.js](https://nodejs.org/en/) version 12+ | ||
|
||
1. Fork from GitHub | ||
2. Clone the forked project | ||
3. checkout develop branch | ||
4. Run `npm install` to install dependencies. | ||
|
||
[//]: # (This is where you can add testing instructions) | ||
|
||
[//]: # (## Tests) | ||
[//]: # (To test the component, we are using [Cypress](https://www.cypress.io). If you add a new feature make sure to write additional tests for it.) | ||
[//]: # () | ||
[//]: # () | ||
[//]: # (Run `npm run cypress:open` to start the cypress testing server. ) | ||
[//]: # (The cypress test environment will open itself automatically.) | ||
|
||
|
||
[//]: # (This is where you can add storybook instructions) | ||
|
||
[//]: # (## Storybook) | ||
[//]: # (We also set up [Storybook](https://storybook.js.org) for our component.) | ||
[//]: # () | ||
[//]: # (Run `npm run storybook` to start the storybook server.) | ||
|
||
## Commits | ||
Commit messages should follow [Vue's commit message convention](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md). | ||
|
||
## Pull Requests | ||
|
||
- Do not submit PRs against the `main` branch. Checkout a topic branch from the relevant branch (e.g. develop) and merge back against that branch | ||
- Work in the `src` folder and DO NOT check in `dist` in the commits | ||
- It's okay to have multiple small commits - GitHub will automatically squash it before merging | ||
- Make sure the project can be built using `npm run build` | ||
- If you are fixing a bug: | ||
- If you are resolving a special issue, add `(fix #xxxx[,#xxxx])` (#xxxx is the issue id) in your Pull Request title. | ||
- Add appropriate test coverage if applicable |
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
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