From 6b817f4b83de3c467236d2267f8595658ad2287f Mon Sep 17 00:00:00 2001 From: Arthur Araujo Date: Wed, 28 Jun 2023 21:35:52 -0300 Subject: [PATCH] Make lint scripts run in parallel --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ae3b6e6b0..e4eb1d272 100644 --- a/package.json +++ b/package.json @@ -14,12 +14,12 @@ "clean": "rimraf coverage release-builds __tests__/__main__/__database.ttldb__ ", "debug:main": "electron --inspect=5858 .", "debug:render": "electron --remote-debugging-port=9222 .", - "lint": "npm-run-all lint:*", + "lint": "npm-run-all --parallel lint:*", "lint:css": "stylelint css/*.css", "lint:eslint": "eslint . ", "lint:markdown": "prettier docs/*.md *.md -c", "lint:json": "prettier locales/*/*.json -c", - "lint-fix": "npm-run-all lint-fix:*", + "lint-fix": "npm-run-all --parallel lint-fix:*", "lint-fix:css": "npm run lint:css -- --fix", "lint-fix:eslint": "npm run lint:eslint -- --fix", "lint-fix:json": "npm run lint:json -- --write",