You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install the latest [npm](https://docs.npmjs.com/).
4
+
5
+
Fork the respository, then clone it
6
+
```
7
+
$ git@github.com:udaypydi/react-simple-boilerplate.git && cd react-simple-boilerplate
8
+
$ yarn
9
+
```
10
+
11
+
## Commands
12
+
13
+
Run unit tests
14
+
15
+
```
16
+
# run test cases
17
+
npm run test
18
+
19
+
# watch mode
20
+
21
+
npm run test:watch
22
+
```
23
+
24
+
### Linting
25
+
```
26
+
npm run lint
27
+
```
28
+
It's also a good idea to add an eslint plugin in your editor.
29
+
30
+
To fix lint errors from the command line:
31
+
```
32
+
npm run lint
33
+
```
34
+
35
+
## Submitting Pull Requests
36
+
This project follows [GitHub's standard forking model.](https://guides.github.com/activities/forking/). Please fork the project to submit pull requests.
0 commit comments