Add tailwind and svelte to recommended extensions
This commit is contained in:
parent
1bf1700bab
commit
37a6a59506
2 changed files with 23 additions and 21 deletions
4
.vscode/extensions.json
vendored
4
.vscode/extensions.json
vendored
|
@ -2,6 +2,8 @@
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"esbenp.prettier-vscode",
|
"esbenp.prettier-vscode",
|
||||||
"eamodio.gitlens",
|
"eamodio.gitlens",
|
||||||
"GitHub.vscode-pull-request-github"
|
"GitHub.vscode-pull-request-github",
|
||||||
|
"svelte.svelte-vscode",
|
||||||
|
"bradlc.vscode-tailwindcss"
|
||||||
]
|
]
|
||||||
}
|
}
|
40
.vscode/settings.json
vendored
40
.vscode/settings.json
vendored
|
@ -1,21 +1,21 @@
|
||||||
{
|
{
|
||||||
"json.schemas": [
|
"json.schemas": [
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": ["/assets/layers/*/*.json", "!/assets/layers/*/license_info.json"],
|
||||||
"/assets/layers/*/*.json",
|
"url": "./Docs/Schemas/LayerConfigJson.schema.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"
|
||||||
{
|
}
|
||||||
"fileMatch": [
|
],
|
||||||
"/assets/themes/*/*.json",
|
"editor.tabSize": 2,
|
||||||
"!/assets/themes/*/license_info.json"
|
"files.autoSave": "onFocusChange",
|
||||||
],
|
"search.useIgnoreFiles": true,
|
||||||
"url": "./Docs/Schemas/LayoutConfigJson.schema.json"
|
"css.lint.unknownAtRules": "ignore",
|
||||||
}
|
"scss.lint.unknownAtRules": "ignore",
|
||||||
],
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
"editor.tabSize": 2,
|
"[svelte]": {
|
||||||
"files.autoSave": "onFocusChange",
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
"search.useIgnoreFiles": true
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue