diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2023-12-15 04:04:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-14 18:04:19 -0800 |
| commit | 41dff902fb56cc011d1e694045755796d5e3e27d (patch) | |
| tree | 48a81fbf30bcefdf59ceef324439cee587473501 /test/formatters/samplecode/python3-json | |
| parent | a38279566a82c39253973e49a2a56634ded50212 (diff) | |
Add support for JSON with `python3 -m json.tool` (#257)
https://docs.python.org/3/library/json.html#module-json.tool
Diffstat (limited to 'test/formatters/samplecode/python3-json')
| l--------- | test/formatters/samplecode/python3-json/in.json | 1 | ||||
| -rw-r--r-- | test/formatters/samplecode/python3-json/out.json | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/test/formatters/samplecode/python3-json/in.json b/test/formatters/samplecode/python3-json/in.json new file mode 120000 index 0000000..599a1e2 --- /dev/null +++ b/test/formatters/samplecode/python3-json/in.json @@ -0,0 +1 @@ +../prettier-json/in.json
\ No newline at end of file diff --git a/test/formatters/samplecode/python3-json/out.json b/test/formatters/samplecode/python3-json/out.json new file mode 100644 index 0000000..6af7b82 --- /dev/null +++ b/test/formatters/samplecode/python3-json/out.json @@ -0,0 +1,19 @@ +{ + "arrowParens": "always", + "bracketSpacing": true, + "embeddedLanguageFormatting": "auto", + "htmlWhitespaceSensitivity": "css", + "insertPragma": false, + "jsxBracketSameLine": false, + "jsxSingleQuote": false, + "printWidth": 80, + "proseWrap": "preserve", + "quoteProps": "as-needed", + "requirePragma": false, + "semi": true, + "singleQuote": false, + "tabWidth": 2, + "trailingComma": "es5", + "useTabs": false, + "vueIndentScriptAndStyle": false +} |
