Skip to content

Commit

Permalink
Grammatically updated the contribution.md (#12886)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreySinha02 committed Jun 2, 2022
1 parent 93d41cf commit fb51581
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
@@ -1,6 +1,6 @@
# How to Contribute

Jest is one of Facebook's open source projects that is both under very active development and is also being used to ship code to everybody on [facebook.com](https://www.facebook.com). We're still working out the kinks to make contributing to this project as easy and transparent as possible, but we're not quite there yet. Hopefully this document makes the process for contributing clear and answers some questions that you may have.
Jest is one of Facebook's open-source projects that is both under very active development and is also being used to ship code to everybody on [Facebook.com](https://www.facebook.com). We're still working out the kinks to make contributing to this project as easy and transparent as possible, but we're not quite there yet. Hopefully, this document makes the process for contributing clear and answers some questions that you may have.

If you want an already configured online IDE to contribute to Jest, you can use [Gitpod](https://gitpod.io/#https://github.com/facebook/jest)!

Expand All @@ -18,7 +18,7 @@ We will do our best to keep `main` in good shape, with tests passing at all time

### Workflow and Pull Requests

The core team will be monitoring for pull requests. When we get one, we'll run some Facebook-specific integration tests on it first. From here, we'll need to get another person to sign off on the changes and then merge the pull request. For API changes we may need to fix internal uses, which could cause some delay. We'll do our best to provide updates and feedback throughout the process.
The core team will be monitoring for pull requests. When we get one, we'll run some Facebook-specific integration tests on it first. From here, we'll need to get another person to sign off on the changes and then merge the pull request. For API changes we may need to fix internal uses, which could cause some delays. We'll do our best to provide updates and feedback throughout the process.

_Before_ submitting a pull request, please make sure the following is done…

Expand All @@ -44,7 +44,7 @@ _Before_ submitting a pull request, please make sure the following is done…
python --version
```

1. Make sure you have a compatible version of `node` installed (As of October 29th 2021, `v16.x` is recommended).
1. Make sure you have a compatible version of `node` installed (As of October 29th, 2021, `v16.x` is recommended).

```sh
node -v
Expand All @@ -62,7 +62,7 @@ _Before_ submitting a pull request, please make sure the following is done…
yarn --version
```

On Windows `yarn install` may fail with `gyp ERR! build error`. One of possible solutions:
On Windows `yarn install` may fail with `gyp ERR! build error`. One of the possible solutions:

```sh
yarn global add windows-build-tools
Expand Down Expand Up @@ -100,7 +100,7 @@ For significant changes to the documentation or website and things like cleanup,

You can add or edit the changelog entry in the GitHub web interface once you have opened the pull request and know the number and link to it.

Make sure to alphabetically order your entry based on package name. If you have changed multiple packages, separate them with a comma.
Make sure to alphabetically order your entry based on the package name. If you have changed multiple packages, separate them with a comma.

#### Testing

Expand Down Expand Up @@ -221,7 +221,7 @@ Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
## Code Conventions

- 2 spaces for indentation (no tabs).
- 80 character line length strongly preferred.
- 80 character line length is strongly preferred.
- Prefer `'` over `"`.
- ES6 syntax when possible.
- Use [TypeScript](https://www.typescriptlang.org/).
Expand Down

0 comments on commit fb51581

Please sign in to comment.