diff options
| author | matt korwel <[email protected]> | 2025-06-24 21:18:51 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-25 04:18:51 +0000 |
| commit | 9a093e4b51f3079ed3856da285f37bb21aeb483f (patch) | |
| tree | 1867169c322fe12d538564655cde2d9af5ca9a9f /package.json | |
| parent | 4cc2b27f1d0169bc794f48f160b3825a64f8c042 (diff) | |
CI: Linting Fix (#1413)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index 78ad2e2d..081370ad 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,10 @@ "debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js", "lint:fix": "eslint . --fix && eslint integration-tests --fix", "lint": "eslint . --ext .ts,.tsx && eslint integration-tests", + "lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0", "typecheck": "npm run typecheck --workspaces --if-present", "format": "prettier --write .", - "preflight": "npm run clean && npm ci && npm run format && npm run lint:fix && npm run build && npm run typecheck && npm run test:ci", + "preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci", "auth:npm": "npx google-artifactregistry-auth", "auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev", "auth": "npm run auth:npm && npm run auth:docker", |
