mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
9e9f531c99
* feat: add static analysis * chore: update Makefile add static analysis script * chore: add vscode extensions recommandations
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"python.formatting.provider": "black",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
"source.fixAll": true,
|
|
"source.unusedImports": true
|
|
},
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
"source.fixAll": true
|
|
}
|
|
},
|
|
"[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",
|
|
} |