quivr/.vscode/settings.json

16 lines
407 B
JSON
Raw Normal View History

{
"python.formatting.provider": "black",
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll":true
},
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"editor.formatOnSave": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"editor.formatOnSaveMode": "modifications"
}