Skip to content
Snippets Groups Projects
Commit 595c99a5 authored by Thibaut DE SAIVRE's avatar Thibaut DE SAIVRE
Browse files

duplicate settings

parent 3d900a47
No related branches found
No related tags found
No related merge requests found
......@@ -12,5 +12,11 @@
"editor.defaultFormatter": "ms-python.black-formatter", // Use Black formatter for python
"editor.formatOnType": true
},
"python.analysis.typeCheckingMode": "strict" // or "strict" : use stricter python type checking
"python.analysis.typeCheckingMode": "strict", // or "strict" : use stricter python type checking
// Add explicit hints overlays for arguments, return types, variable types...
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.callArgumentNames": "all"
}
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