Skip to content

Commit

Permalink
Doc: List required packages for linting through VSCode
Browse files Browse the repository at this point in the history
This feature has always been available but now requires additional
global packages to be installed.

VSCode's ESLint extension does not run inside the project's environment.
  • Loading branch information
deribaucourt committed Sep 18, 2024
1 parent 8da2ca0 commit a179570
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README-DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ One can check coding style using
``` sh
npm run lint
```
Install the recommended extensions to automatically fix linting errors when possible.
Install the recommended extensions to automatically fix linting errors through VSCode.
You will also need to install the `eslint` dependencies globally:
``` sh
npm install -g eslint typescript-eslint
```

### Unit tests

Expand Down

0 comments on commit a179570

Please sign in to comment.