diff options
| author | Daniel Perez Alvarez <danielpza@protonmail.com> | 2025-01-19 12:23:47 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-19 12:23:47 -0800 |
| commit | e3db0e795b7675062b9a65ed19077dfa6d913ea8 (patch) | |
| tree | 81d737208fe6edf5d5103f932d41f9825d7363a7 /test/formatters/samplecode/prettier-json-stringify/out.json | |
| parent | fa50cb3a3c7cb8f2b4216760c05f8a885a3ce906 (diff) | |
feat: add prettier-json-stringify formatter (#183)
Adds a new formatter for prettier `prettier-json-stringify` which uses
prettier `json-stringify` parser. `json-stringify` parser is used by
prettier for formatting package.json files
Diffstat (limited to 'test/formatters/samplecode/prettier-json-stringify/out.json')
| -rw-r--r-- | test/formatters/samplecode/prettier-json-stringify/out.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/formatters/samplecode/prettier-json-stringify/out.json b/test/formatters/samplecode/prettier-json-stringify/out.json new file mode 100644 index 0000000..51ba2a3 --- /dev/null +++ b/test/formatters/samplecode/prettier-json-stringify/out.json @@ -0,0 +1,15 @@ +{ + "name": "test-package-json", + "version": "1.0.0", + "main": "index.js", + "files": [ + "index.js" + ], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "description": "" +} |
