-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.json
More file actions
26 lines (26 loc) · 819 Bytes
/
setting.json
File metadata and controls
26 lines (26 loc) · 819 Bytes
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
{
"files.autoSave": "afterDelay",
"editor.tabSize": 2,
"editor.quickSuggestionsDelay": 5,
"editor.rulers": [80,120],
"workbench.colorTheme": "Default Light+",
"window.zoomLevel": 0,
"editor.minimap.enabled": false,
//python
"[python]":{
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["-S", "--line-length", "80"],
//js
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDelete": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}