gradio/.vscode/settings.json
paragonnov 08c2d491ec
when adding custom head html, ensure there are no duplicate meta tags (#7510)
* fix: remove old element to prevent duplication

remove old element before append new meta tag to prevent duplication

* fix: unexpected

* Update

* format

* unexpected

* unexpected

* add changeset

* improve

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-02-23 17:04:04 +00:00

27 lines
985 B
JSON

{
"python.formatting.provider": "none",
"cssvar.files": ["./js/node_modules/pollen-css/pollen.css"],
"cssvar.ignore": [],
"cssvar.disableSort": true,
"cssvar.extensions": ["js", "css", "html", "jsx", "tsx", "svelte"],
"python.analysis.extraPaths": ["./gradio/themes/utils"],
"svelte.plugin.svelte.format.enable": true,
"svelte.plugin.svelte.diagnostics.enable": false,
"svelte.enable-ts-plugin": true,
"prettier.configPath": ".config/.prettierrc.json",
"prettier.ignorePath": ".config/.prettierignore",
"python.analysis.typeCheckingMode": "basic",
"python.testing.pytestArgs": ["."],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"eslint.validate": ["javascript", "typescript", "html", "markdown", "svelte"],
"eslint.experimental.useFlatConfig": true,
"eslint.options": {
"overrideConfigFile": "./.config/eslint.config.js"
},
"typescript.tsdk": "node_modules/typescript/lib",
"i18n-ally.localesPaths": [
"js/app/src/lang"
]
}