Skip to content

Commit

Permalink
Merge pull request #4097 from alphagov/lint-script-typo
Browse files Browse the repository at this point in the history
Fix missing `&&` in lint script
  • Loading branch information
colinrotherham committed Aug 17, 2023
2 parents 260bac5 + cc75cc4 commit 9f05cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"postheroku-postbuild": "NPM_CONFIG_PRODUCTION=true npm ci --ignore-scripts --omit=optional --workspace @govuk-frontend/review",
"pretest": "npm run build",
"test": "jest --color --ignoreProjects \"Build tasks\" --maxWorkers=50%",
"lint": "npm run lint:editorconfig && npm run lint:prettier && npm run lint:js && npm run lint:types npm run lint:scss",
"lint": "npm run lint:editorconfig && npm run lint:prettier && npm run lint:js && npm run lint:types && npm run lint:scss",
"lint:editorconfig": "npm run lint:editorconfig:cli",
"lint:editorconfig:cli": "editorconfig-checker",
"lint:js": "npm run lint:js:cli -- \"**/*.{cjs,js,md,mjs}\"",
Expand Down

0 comments on commit 9f05cea

Please sign in to comment.