diff --git a/zeppelin-web-angular/package.json b/zeppelin-web-angular/package.json index 2bf5deaff5a..e407986f420 100644 --- a/zeppelin-web-angular/package.json +++ b/zeppelin-web-angular/package.json @@ -14,8 +14,10 @@ "build:projects": "npm run build-project:sdk && npm run build-project:vis", "build-project:sdk": "ng build --project zeppelin-sdk", "build-project:vis": "ng build --project zeppelin-visualization", - "lint": "cross-env NODE_OPTIONS='--max-old-space-size=8192' ng lint && prettier --check \"**/*.{ts,js,json,css,html}\"", - "lint:fix": "cross-env NODE_OPTIONS='--max-old-space-size=8192' ng lint --fix && prettier --write \"**/*.{ts,js,json,css,html}\"", + "lint": "cross-env NODE_OPTIONS='--max-old-space-size=8192' ng lint && npm run lint:react && prettier --check \"**/*.{ts,js,json,css,html}\"", + "lint:fix": "cross-env NODE_OPTIONS='--max-old-space-size=8192' ng lint --fix && npm run lint:fix:react && prettier --write \"**/*.{ts,js,json,css,html}\"", + "lint:react": "cd projects/zeppelin-react && npm run lint", + "lint:fix:react": "cd projects/zeppelin-react && npm run lint:fix", "e2e": "playwright test", "e2e:fast": "playwright test --project=chromium", "e2e:ui": "playwright test --ui",