2023-05-14 11:30:03 +03:00
|
|
|
{
|
2023-06-14 22:21:13 +03:00
|
|
|
"python.formatting.provider": "black",
|
2023-05-26 14:56:29 +03:00
|
|
|
"editor.codeActionsOnSave": {
|
2023-06-20 10:54:23 +03:00
|
|
|
"source.organizeImports": true,
|
2023-06-22 18:50:06 +03:00
|
|
|
"source.fixAll": true,
|
|
|
|
"source.unusedImports": true
|
2023-06-20 10:54:23 +03:00
|
|
|
},
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
"python.linting.flake8Enabled": true,
|
2023-11-29 11:04:03 +03:00
|
|
|
"python.analysis.extraPaths": ["./backend"],
|
2023-06-20 10:54:23 +03:00
|
|
|
"editor.formatOnSave": true,
|
2023-06-20 11:10:56 +03:00
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
2023-07-10 15:27:49 +03:00
|
|
|
"source.organizeImports": true,
|
|
|
|
"source.fixAll": true
|
2023-06-20 11:10:56 +03:00
|
|
|
}
|
2023-06-20 12:24:19 +03:00
|
|
|
},
|
|
|
|
"[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
|
|
|
|
},
|
2023-07-03 20:03:36 +03:00
|
|
|
"editor.formatOnSaveMode": "file",
|
|
|
|
"files.exclude": {
|
|
|
|
"**/__pycache__": true,
|
|
|
|
"**/.benchmarks/": true,
|
|
|
|
"**/.cache/": true,
|
|
|
|
"**/.pytest_cache/": true,
|
|
|
|
"**/.next/": true,
|
|
|
|
"**/build/": true,
|
|
|
|
"**/.docusaurus/": true,
|
2023-07-17 09:57:27 +03:00
|
|
|
"**/node_modules/": true
|
2023-07-03 20:03:36 +03:00
|
|
|
},
|
2023-07-10 15:27:49 +03:00
|
|
|
"python.linting.pycodestyleCategorySeverity.W": "Error",
|
|
|
|
"python.defaultInterpreterPath": "python3",
|
|
|
|
"python.linting.flake8CategorySeverity.W": "Error",
|
2023-07-17 09:57:27 +03:00
|
|
|
}
|