From 1b25322bf58af0dbe098a5fc7f20b0bcbd39068f Mon Sep 17 00:00:00 2001 From: Marshall Thompson Date: Sun, 9 Jul 2023 19:02:20 -0600 Subject: [PATCH] docs: VS Code config example (#215) --- README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index e02ea8a..3d693b0 100644 --- a/README.md +++ b/README.md @@ -54,24 +54,24 @@ Add the following settings to your `settings.json`: "editor.codeActionsOnSave": { "source.fixAll.eslint": true, "source.organizeImports": false, - - // The following is optional. - // It's better to put under project setting `.vscode/settings.json` - // to avoid conflicts with working with different eslint configs - // that does not support all formats. - "eslint.validate": [ - "javascript", - "javascriptreact", - "typescript", - "typescriptreact", - "vue", - "html", - "markdown", - "json", - "jsonc", - "yaml" - ] - } + }, + + // The following is optional. + // It's better to put under project setting `.vscode/settings.json` + // to avoid conflicts with working with different eslint configs + // that does not support all formats. + "eslint.validate": [ + "javascript", + "javascriptreact", + "typescript", + "typescriptreact", + "vue", + "html", + "markdown", + "json", + "jsonc", + "yaml" + ] } ```