sandbox/package.json
Yongmin Hong aca8c5967b
CI: new package and configs
Summary:
add following npm packages:

 - jshint
 - prettier

Add `prettier` configs and `.arclint` accordingly.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: `npm run pcheck`, `npm run pwrite`.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D216
2024-06-08 19:04:29 +09:00

13 lines
243 B
JSON

{
"name": "@revi/scripts",
"private": true,
"devDependencies": {
"csslint": "^1.0.5",
"jshint": "^2.13.6",
"prettier": "^3.3.1"
},
"scripts": {
"pcheck": "prettier --check .",
"pwrite": "prettier --write ."
}
}