Skip to content

Commit 981303e

Browse files
committed
chore: remove "flow" references
1 parent cf9d5d1 commit 981303e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.eslintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "@callstack",
33
"rules": {
4-
"flowtype/no-weak-types": 0,
54
"react-native/no-raw-text": 0,
65
"no-console": 1,
76
"react/no-multi-comp": 0,

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ Our pre-commit hooks verify that your commit message matches this format when co
3232

3333
### Linting and tests
3434

35-
We use `flow` 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 committing. 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 the linter and tests pass when committing. You can also run the following commands manually:
3636

37-
- `yarn flow`: run flow on all files.
37+
- `yarn typecheck`: run TypeScript compiler on all files.
3838
- `yarn lint`: run eslint and prettier.
3939
- `yarn test`: run tests.
4040

@@ -43,7 +43,7 @@ We use `flow` for type checking, `eslint` with `prettier` for linting and format
4343
When you're sending a pull request:
4444

4545
- Prefer small pull requests focused on one change.
46-
- Verify that `flow`, `eslint` and tests are passing.
46+
- Verify that `typecheck`, `eslint` and tests are passing.
4747
- Preview the documentation to make sure it looks good.
4848
- Follow the pull request template when opening a pull request.
4949

0 commit comments

Comments
 (0)