-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvscode-settings.json
More file actions
53 lines (49 loc) · 1.55 KB
/
vscode-settings.json
File metadata and controls
53 lines (49 loc) · 1.55 KB
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
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Dark Pro",
"window.zoomLevel": 0,
"explorer.confirmDragAndDrop": false,
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs":"active",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"typescript.suggest.completeFunctionCalls": true,
"javascript.suggest.completeFunctionCalls": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.javascript.autoAttachFilter": "disabled",
"files.associations": {
".env": "env",
".zimrc": "shellscript"
},
"[python]": {
"editor.defaultFormatter": null,
"editor.tabSize": 4,
"editor.formatOnType": true,
},
"python.formatting.provider": "black",
"python.formatting.blackArgs": [],
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"bracketPairColorizer.depreciation-notice": false,
"leetcode.workspaceFolder": "/Users/khanhtran/Code/leetcode",
"leetcode.defaultLanguage": "javascript",
"leetcode.hint.configWebviewMarkdown": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open"
}