Skip to content

Commit

Permalink
Update test-setup.md
Browse files Browse the repository at this point in the history
Added some text about linting
  • Loading branch information
EdwardMoyse authored Aug 25, 2023
1 parent 9553acf commit 56c2cf7
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions guides/developers/test-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ Once you have fixed it, you can check the CI would succeed with:
yarn docs:coverage
```

## Failures in linting



If you see errors like:
```
10:43 error Insert `,` prettier/prettier
```
Then firstly, you should be able to spot them locally by running:
```sh
yarn lint
```
and you can automatically fix them with:
```sh
yarn lint:fix
```
(obviously you will then need to commit and push the fixes).

0 comments on commit 56c2cf7

Please sign in to comment.