sandbox/package.json
Yongmin Hong 04798b45fd
style: npm run p:w .
Summary:
Which is essentially `npx prettier --write .`

Also fix `jshint` (possible) FP, wrong chars.

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

Test Plan: `npm run p:w .` and verify no changes made.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D217
2024-06-09 22:11:33 +09:00

13 lines
237 B
JSON

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