Skip to content

Commit

Permalink
docs: Add npm run lint:fix docs to testing-overview.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ntwb authored Jan 29, 2018
1 parent e6728ef commit c524285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/testing-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Assuming you've followed the instructions above to install Node and project depe
npm test
```

Code style in JavaScript is enforced using [ESLint](http://eslint.org/). The above `npm test` will execute both unit tests and code linting. Code linting can be verified independently by running `npm run lint`.
Code style in JavaScript is enforced using [ESLint](http://eslint.org/). The above `npm test` will execute both unit tests and code linting. Code linting can be verified independently by running `npm run lint`. ESLint can also fix not all, but many issues automatically by running `npm run lint:fix`.

To run unit tests only, without the linter, use `npm run test-unit` instead.

Expand Down

0 comments on commit c524285

Please sign in to comment.