34 lines
919 B
JSON
34 lines
919 B
JSON
{
|
|
"files.exclude": {
|
|
"**/__pycache__": true
|
|
},
|
|
"editor.rulers": [120],
|
|
"cSpell.enabled": false,
|
|
"css.styleSheets": ["ui/app/assets/css/*.css"],
|
|
"search.exclude": {
|
|
"ui/.nuxt": true,
|
|
"ui/.output": true,
|
|
"ui/dist": true,
|
|
"ui/exported": true,
|
|
"ui/node_modules": true,
|
|
"ui/.out": true,
|
|
"**/.venv": true
|
|
},
|
|
"eslint.format.enable": false,
|
|
"eslint.ignoreUntitled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.pytestArgs": ["app"],
|
|
"oxc.path.oxfmt": "./ui/node_modules/.bin/oxfmt",
|
|
"oxc.fmt.configPath": "./ui/.oxfmtrc.json",
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "file"
|
|
},
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "file"
|
|
}
|
|
}
|