@@ -71,6 +71,15 @@ Below is the JSON file for general settings, and the extensions from above. I us
71
71
"workbench.iconTheme" : " material-icon-theme" ,
72
72
"workbench.colorTheme" : " One Dark Pro Flat" ,
73
73
"workbench.editor.wrapTabs" : false ,
74
+ "workbench.panel.defaultLocation" : " right" ,
75
+ "workbench.startupEditor" : " none" ,
76
+ "workbench.editor.enablePreview" : false ,
77
+ "workbench.editor.enablePreviewFromCodeNavigation" : true ,
78
+ "workbench.colorCustomizations" : {
79
+ "editorInlayHint.background" : " #00000000" ,
80
+ "editorInlayHint.foreground" : " #979696"
81
+ },
82
+ "workbench.sideBar.location" : " right" ,
74
83
"debug.allowBreakpointsEverywhere" : true ,
75
84
"debug.showBreakpointsInOverviewRuler" : true ,
76
85
"explorer.confirmDragAndDrop" : false ,
@@ -79,33 +88,19 @@ Below is the JSON file for general settings, and the extensions from above. I us
79
88
"files.autoSave" : " afterDelay" ,
80
89
"editor.renderWhitespace" : " none" ,
81
90
"editor.bracketPairColorization.enabled" : true ,
82
- "workbench.startupEditor" : " none" ,
83
91
"diffEditor.ignoreTrimWhitespace" : false ,
84
- "workbench.editor.enablePreview" : false ,
85
- "workbench.editor.enablePreviewFromCodeNavigation" : true ,
86
92
"zenMode.fullScreen" : false ,
87
- "zenMode.hideTabs" : false ,
88
93
"zenMode.hideLineNumbers" : false ,
89
94
"eslint.validate" : [" typescript" , " typescriptreact" ],
90
95
"typescript.inlayHints.variableTypes.enabled" : true ,
91
96
"javascript.inlayHints.variableTypes.enabled" : true ,
92
- "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
93
97
"search.exclude" : {
94
98
"**/dist/**" : true ,
95
99
"**/node_modules/**" : true
96
100
},
97
101
"typescript.workspaceSymbols.scope" : " currentProject" ,
98
102
"search.useGlobalIgnoreFiles" : true ,
99
103
"editor.inlayHints.fontSize" : 13 ,
100
- "workbench.colorCustomizations" : {
101
- "editorInlayHint.background" : " #00000000" ,
102
- "editorInlayHint.foreground" : " #979696"
103
- },
104
- "window.menuBarVisibility" : " toggle" ,
105
- "editor.cursorSmoothCaretAnimation" : " on" ,
106
- "[python]" : {
107
- "editor.defaultFormatter" : " ms-python.python"
108
- },
109
104
"files.exclude" : {
110
105
"**/__pycache__" : true ,
111
106
"**/.idea" : true ,
@@ -114,13 +109,28 @@ Below is the JSON file for general settings, and the extensions from above. I us
114
109
"**/node_modules" : true ,
115
110
"**/.next" : true ,
116
111
"**/coverage" : true ,
117
- "**/.swc" : true
112
+ "**/.swc" : true ,
113
+ "**/.mypy_cache" : true ,
114
+ "**/.ruff_cache" : true ,
115
+ "**/.pdm-python" : true
118
116
},
119
117
"telemetry.telemetryLevel" : " off" ,
120
- "workbench.sideBar.location" : " right" ,
121
- "workbench.activityBar.visible" : false ,
122
118
"[cpp]" : {
123
119
"editor.defaultFormatter" : " xaver.clang-format"
124
- }
120
+ },
121
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
122
+ "python.testing.pytestArgs" : [" ." ],
123
+ "python.testing.unittestEnabled" : false ,
124
+ "python.testing.pytestEnabled" : true ,
125
+ "python.languageServer" : " Pylance" ,
126
+ "window.menuBarVisibility" : " toggle" ,
127
+ "[toml]" : {
128
+ "editor.defaultFormatter" : " tamasfe.even-better-toml"
129
+ },
130
+ "[prisma]" : {
131
+ "editor.defaultFormatter" : " Prisma.prisma"
132
+ },
133
+ "python.analysis.autoFormatStrings" : true ,
134
+ "window.density.editorTabHeight" : " compact"
125
135
}
126
136
```
0 commit comments