Skip to content

Commit

Permalink
Make lint scripts run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
araujoarthur0 committed Jun 29, 2023
1 parent 249421f commit 6b817f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 6b817f4

Please sign in to comment.