From 37a6a595064dad4392eca0e6a43d3f6736a26ad4 Mon Sep 17 00:00:00 2001 From: wjtje <33957974+wjtje@users.noreply.github.com> Date: Sat, 4 Feb 2023 19:46:11 +0100 Subject: [PATCH] Add tailwind and svelte to recommended extensions --- .vscode/extensions.json | 4 +++- .vscode/settings.json | 40 ++++++++++++++++++++-------------------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 68d524f21..8ca85028f 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,8 @@ "recommendations": [ "esbenp.prettier-vscode", "eamodio.gitlens", - "GitHub.vscode-pull-request-github" + "GitHub.vscode-pull-request-github", + "svelte.svelte-vscode", + "bradlc.vscode-tailwindcss" ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 25b1f4dbe..26b59e881 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,21 +1,21 @@ { - "json.schemas": [ - { - "fileMatch": [ - "/assets/layers/*/*.json", - "!/assets/layers/*/license_info.json" - ], - "url": "./Docs/Schemas/LayerConfigJson.schema.json" - }, - { - "fileMatch": [ - "/assets/themes/*/*.json", - "!/assets/themes/*/license_info.json" - ], - "url": "./Docs/Schemas/LayoutConfigJson.schema.json" - } - ], - "editor.tabSize": 2, - "files.autoSave": "onFocusChange", - "search.useIgnoreFiles": true - } \ No newline at end of file + "json.schemas": [ + { + "fileMatch": ["/assets/layers/*/*.json", "!/assets/layers/*/license_info.json"], + "url": "./Docs/Schemas/LayerConfigJson.schema.json" + }, + { + "fileMatch": ["/assets/themes/*/*.json", "!/assets/themes/*/license_info.json"], + "url": "./Docs/Schemas/LayoutConfigJson.schema.json" + } + ], + "editor.tabSize": 2, + "files.autoSave": "onFocusChange", + "search.useIgnoreFiles": true, + "css.lint.unknownAtRules": "ignore", + "scss.lint.unknownAtRules": "ignore", + "editor.defaultFormatter": "esbenp.prettier-vscode", + "[svelte]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + } +}