-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
66 lines (55 loc) · 2.21 KB
/
vscode-settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"breadcrumbs.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorStyle": "underline",
"editor.foldingStrategy": "indentation",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.rulers": [80, 90, 100],
"editor.smoothScrolling": true,
"editor.suggestSelection": "first",
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.exclude": {
"**/__pycache__": true,
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"**/.vscode/": true,
"**/*.pyc": true,
"**/venv/": true
},
"markdown.preview.scrollEditorWithPreview": true,
"markdown.preview.scrollPreviewWithEditor": true,
"python.analysis.addImport.heuristics": true,
"python.analysis.autoFormatStrings": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.fixAll": ["source.unusedImports", "source.convertImportFormat"],
"python.analysis.inlayHints.callArgumentNames": "all",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.typeCheckingMode": "strict",
"scm.autoReveal": false,
"telemetry.telemetryLevel": "off",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.scrollback": 100000,
"window.commandCenter": true,
"window.restoreWindows": "one",
"workbench.colorTheme": "One Dark Pro Darker",
"workbench.iconTheme": "helium-icon-theme",
"workbench.list.smoothScrolling": true,
"workbench.sideBar.location": "right",
"workbench.startupEditor": "newUntitledFile"
}