-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
1,785 additions
and
1,245 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
**/node_modules | ||
build | ||
|
||
build/ | ||
**/coverage/ | ||
integrationTests/__fixtures__/skipped/__eslint__/file.js | ||
integrationTests/__fixtures__/skipped/__eslint__/file.js |
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 |
---|---|---|
@@ -1 +1 @@ | ||
package.json | ||
build/ |
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 |
---|---|---|
|
@@ -2,5 +2,4 @@ language: node_js | |
node_js: | ||
- '10' | ||
- '8' | ||
- '7' | ||
- '6' |
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 |
---|---|---|
@@ -1,15 +1,10 @@ | ||
{ | ||
"editor.rulers": [80], | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/node_modules": true, | ||
"**/build": true | ||
}, | ||
"prettier.parser": "flow", | ||
"prettier.printWidth": 80, | ||
"prettier.singleQuote": true, | ||
"prettier.trailingComma": "all", | ||
"prettier.semi": true, | ||
"editor.formatOnSave": true, | ||
"prettier.eslintIntegration": true | ||
} | ||
"editor.rulers": [80], | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/node_modules": true, | ||
"**/build": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"prettier.eslintIntegration": true | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
### Setup up your dev environment | ||
|
||
1. Fork the repo and create your branch from `master`. | ||
A guide on how to fork a repository: https://help.github.com/articles/fork-a-repo/ | ||
|
||
1. Fork the repo and create your branch from `master`. A guide on how to fork a repository: https://help.github.com/articles/fork-a-repo/ | ||
|
||
Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type: | ||
|
||
```sh | ||
git clone https://github.com/<your_username>/jest-runner-eslint | ||
cd jest | ||
git checkout -b my_branch | ||
``` | ||
Note: | ||
Replace `<your_username>` with your GitHub username | ||
|
||
2. jest-runner-eslint uses [Yarn](https://code.facebook.com/posts/1840075619545360) | ||
for running development scripts. If you haven't already done so, | ||
please [install yarn](https://yarnpkg.com/en/docs/install). | ||
Note: Replace `<your_username>` with your GitHub username | ||
|
||
2. jest-runner-eslint uses [Yarn](https://code.facebook.com/posts/1840075619545360) for running development scripts. If you haven't already done so, please [install yarn](https://yarnpkg.com/en/docs/install). | ||
3. Run `yarn`. | ||
```sh | ||
yarn | ||
``` | ||
5. If you've changed APIs, update the documentation. | ||
```sh | ||
yarn | ||
``` | ||
4. If you've changed APIs, update the documentation. | ||
|
||
6. Ensure the test suite passes via `yarn test`. To run the test suite you | ||
5. Ensure the test suite passes via `yarn test`. To run the test suite you | ||
|
||
```sh | ||
yarn test | ||
``` | ||
``` |
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
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
Oops, something went wrong.