fix: lint sequentially to catch errors (#45441)

This commit is contained in:
Oliver Eyton-Williams
2022-03-16 13:52:12 +01:00
committed by GitHub
parent 3fc687a583
commit 47f0914de4

View File

@ -73,7 +73,7 @@
"lint": "npm-run-all create:config -p lint:*", "lint": "npm-run-all create:config -p lint:*",
"lint:challenges": "cd ./curriculum && npm run lint", "lint:challenges": "cd ./curriculum && npm run lint",
"lint:js": "eslint --max-warnings 0 .", "lint:js": "eslint --max-warnings 0 .",
"lint:ts": "tsc & tsc -p config & tsc -p tools/ui-components", "lint:ts": "tsc && tsc -p config && tsc -p tools/ui-components",
"lint:prettier": "prettier --list-different .", "lint:prettier": "prettier --list-different .",
"seed": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser", "seed": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser",
"seed:certified-user": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser certUser", "seed:certified-user": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser certUser",