Add a script for `npm run format`.

I no longer use ESLint personally, so I rely on the commandline for formatting projects like this. A formatting command makes this easier.
This commit is contained in:
Lucas Garron 2022-11-17 09:55:57 -08:00
Родитель 538b1081d0
Коммит aa5192f58b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,7 @@
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
"format": "eslint --fix . --ext .js,.ts",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "tsc",
"pretest": "npm run build",