From 79bd9830c9c08ea72d8b4cd4942375fa74f566d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90?= Date: Thu, 5 Jan 2023 21:43:34 +0800 Subject: [PATCH] chore: configure volar completion --- .vscode/settings.json | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6c710a8c..f1855fcb 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,27 +1,29 @@ { - "prettier.enable": false, - "editor.codeActionsOnSave": { - "source.fixAll.eslint": true - }, - "files.associations": { - "*.css": "postcss" - }, - "editor.formatOnSave": false, "cSpell.words": [ "masto", "Nuxtodon", "unmute", "unstorage" ], - "i18n-ally.localesPaths": [ - "locales" - ], - "i18n-ally.keystyle": "nested", - "i18n-ally.sourceLanguage": "en-US", - "i18n-ally.preferredDelimiter": "_", - "i18n-ally.sortKeys": true, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "editor.formatOnSave": false, + "files.associations": { + "*.css": "postcss" + }, "i18n-ally.keysInUse": [ "time_ago_options.*", "visibility.*" - ] + ], + "i18n-ally.keystyle": "nested", + "i18n-ally.localesPaths": [ + "locales" + ], + "i18n-ally.preferredDelimiter": "_", + "i18n-ally.sortKeys": true, + "i18n-ally.sourceLanguage": "en-US", + "prettier.enable": false, + "volar.completion.preferredTagNameCase": "pascal", + "volar.completion.preferredAttrNameCase": "kebab" }