From e31db06b37de104ced0153fb4ff75d3b14dd796e Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Mon, 18 Jul 2022 11:44:43 -0700 Subject: [PATCH] Avoid formatting `REAMDE.md` with an undesired newline. --- .vscode/settings.json | 5 +++++ README.md | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a836b00 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "[markdown]": { + "editor.formatOnSave": false + } +} diff --git a/README.md b/README.md index ed9ae1d..1f2dc91 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,7 @@ function parseCreationOptionsFromJSON(json: JSON): CredentialCreationOptions; function parseRequestOptionsFromJSON(json: JSON): CredentialRequestOptions; // You can call `.toJSON()` on the result or pass directly to `JSON.stringify()`. -function create( - options: CredentialCreationOptions, -): Promise; +function create(options: CredentialCreationOptions): Promise; // You can call `.toJSON()` on the result or pass directly to `JSON.stringify()`. function get(options: CredentialRequestOptions): Promise; ```