sandbox/package.json
Yongmin Hong 8865e172f9
npm(prettier-config): add new sharable config
Summary:
Docs: https://prettier.io/docs/en/configuration#sharing-configurations

To be published @ npm and imported elsewhere.

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

Test Plan: no test can be performed at this time; needs to be landed, published to npm, and then we can test from other tepo importing this.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D302
2024-06-14 17:18:03 +09:00

17 lines
340 B
JSON

{
"$schema": "https://json.schemastore.org/package.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"
},
"workspaces": [
"npm/prettier-config"
]
}