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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,9 @@ Our pre-commit hooks verify that your commit message matches this format when co
32
32
33
33
### Linting and tests
34
34
35
-
We use `typescript` for type checking, `eslint` with `prettier` for linting and formatting the code, and `jest` for testing. Our pre-commit hooks verify that the linter and tests pass when commiting. You can also run the following commands manually:
35
+
We use `typescript` for type checking, `eslint` with `prettier` for linting and formatting the code, and `jest` for testing. Our pre-commit hooks verify that type checking, linting, and tests pass when committing. You can also run the following commands manually:
36
36
37
-
-`yarn typescript`: type-check files with `tsc`.
37
+
-`yarn typecheck`: type-check files with `tsc`.
38
38
-`yarn lint`: lint files with `eslint` and `prettier`.
39
39
-`yarn test`: run unit tests with `jest`.
40
40
@@ -43,7 +43,7 @@ We use `typescript` for type checking, `eslint` with `prettier` for linting and
43
43
When you're sending a pull request:
44
44
45
45
- Prefer small pull requests focused on one change.
46
-
- Verify that `typescript`, `eslint` and all tests are passing.
46
+
- Verify that `typecheck`, `lint` and all tests are passing.
47
47
- Preview the documentation to make sure it looks good.
48
48
- Follow the pull request template when opening a pull request.
49
49
@@ -58,7 +58,7 @@ When you're working on a component:
58
58
59
59
The example app uses [Expo](https://expo.dev/) for the React Native example. You will need to install the Expo app for [Android](https://play.google.com/store/apps/details?id=host.exp.exponent) and [iOS](https://itunes.apple.com/app/apple-store/id982107779) to start developing.
60
60
61
-
> [!IMPORTANT]
61
+
> [!IMPORTANT]
62
62
> The example app is built with `react-native@0.77.x` and Expo SDK 52, which isn’t compatible with Expo Go. To run the app, you have to create a [development build](https://docs.expo.dev/develop/development-builds/create-a-build/).
63
63
64
64
After you're done, you can run `yarn example start` in the project root (or `npx expo start` in the `example/` folder) and scan the QR code to launch it on your device.
@@ -72,7 +72,7 @@ If you want to test the changes brought by a pull request, you can do so by poin
0 commit comments