Skip to content
Snippets Groups Projects
Unverified Commit 5866a3e3 authored by Samuel Guillemet's avatar Samuel Guillemet
Browse files

:wrench: Update vscode settings

parent d7f8cf79
No related branches found
No related tags found
1 merge request!20Update README
......@@ -24,17 +24,8 @@
"python.analysis.inlayHints.callArgumentNames": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.autoComplete.extraPaths": [
"./src"
],
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": ".venv/bin/pylint",
"python.linting.pylintArgs": [
"pylint.args": [
"--load-plugins",
"pylint_pydantic"
],
......@@ -44,11 +35,19 @@
"black"
],
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"tests",
"-vv",
"--cov=app",
"--cov-report=term-missing",
"--cov-report=html"
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.defaultFormatter": "ms-python.black-formatter"
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeLens": true
},
"search.exclude": {
"**/dist": true,
......@@ -56,8 +55,13 @@
},
"files.exclude": {
"**/__pycache__": true,
".pytest_cache": true,
".mypy*": true,
".coverage": true,
"**/.pytest_cache": true,
"**/.mypy*": true,
"**/.coverage": true,
"**/.coverage.*": true,
"**/node_modules/": true,
},
"python.analysis.extraPaths": [
"./src"
],
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment