chore: improve/decouple eslint and tsc 'npm run' commands (#26704)

This commit is contained in:
Maxime Beauchemin
2024-01-24 08:51:08 -08:00
committed by GitHub
parent 7c2093c495
commit 0f590799b2
7 changed files with 30 additions and 11 deletions

View File

@@ -788,7 +788,10 @@ is configured as a pre-commit hook. There are also numerous [editor integrations
```bash
cd superset-frontend
npm ci
npm run lint
# run eslint checks
npm run eslint -- .
# run tsc (typescript) checks
npm run type
```
If using the eslint extension with vscode, put the following in your workspace `settings.json` file: