mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-11-10 13:35:41 +03:00
4d91d1cadc
moved to brains # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate): --------- Co-authored-by: Antoine Dewez <44063631+Zewed@users.noreply.github.com>
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"python.formatting.provider": "black",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit",
|
|
"source.unusedImports": "explicit"
|
|
},
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.analysis.extraPaths": [
|
|
"./backend"
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"editor.formatOnSaveMode": "file",
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.benchmarks/": true,
|
|
"**/.cache/": true,
|
|
"**/.pytest_cache/": true,
|
|
"**/.next/": true,
|
|
"**/build/": true,
|
|
"**/.docusaurus/": true,
|
|
"**/node_modules/": true
|
|
},
|
|
"python.linting.pycodestyleCategorySeverity.W": "Error",
|
|
"python.defaultInterpreterPath": "python3",
|
|
"python.linting.flake8CategorySeverity.W": "Error",
|
|
"json.sortOnSave.enable": true,
|
|
"python.testing.pytestArgs": [
|
|
"backend"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
|
|
"python.envFile": "${workspaceFolder}/.env_test",
|
|
} |