mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
23 lines
814 B
JSON
23 lines
814 B
JSON
{
|
|
"python.formatting.provider": "black",
|
|
"cssvar.files": [
|
|
// Or your custom Pollen bundle
|
|
"./js/node_modules/pollen-css/pollen.css"
|
|
],
|
|
// Do not ignore css files in node_modules, which is ignored by default
|
|
"cssvar.ignore": [],
|
|
// Use Pollen's inbuilt variable ordering
|
|
"cssvar.disableSort": true,
|
|
// Add support for autocomplete in other file types
|
|
"cssvar.extensions": ["js", "css", "html", "jsx", "tsx", "svelte"],
|
|
"python.analysis.extraPaths": ["./gradio/themes/utils"],
|
|
"prettier.useTabs": true,
|
|
"editor.formatOnSave": true,
|
|
"svelte.plugin.svelte.format.enable": true,
|
|
"prettier.configPath": ".config/.prettierrc.json",
|
|
"prettier.ignorePath": ".config/.prettierignore",
|
|
"python.testing.pytestArgs": ["."],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true
|
|
}
|