-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
66 lines (66 loc) · 2.25 KB
/
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
{
"workbench.colorTheme": "Winter is Coming (Dark Blue - No Italics)",
"workbench.iconTheme": "vscode-icons",
"editor.fontSize": 14,
"terminal.integrated.fontSize": 14,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "'Fira Code', 'Hack Nerd Font'",
"terminal.external.osxExec": "iTerm.app",
"telemetry.telemetryLevel": "off",
"editor.inlineSuggest.enabled": true,
"typescript.suggest.paths": true,
"javascript.suggest.paths": true,
"npm-intellisense.importES6": true,
"npm-intellisense.importQuotes": "'",
"npm-intellisense.importLinebreak": ";\r\n",
"npm-intellisense.importDeclarationType": "const",
"editor.semanticHighlighting.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[go]": {
"editor.defaultFormatter": "golang.go"
},
"editor.formatOnSave": true,
"prettier.printWidth": 100,
"editor.linkedEditing": true,
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"files.trimTrailingWhitespace": true,
"editor.bracketPairColorization.enabled": true,
"emmet.includeLanguages": {
"vue": "html",
"vue-html": "html",
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"volar.updateImportsOnFileMove.enabled": false,
"volar.autoCompleteRefs": true,
"python.linting.mypyEnabled": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.analysis.typeCheckingMode": "basic",
"python.formatting.provider": "yapf",
"editor.tabSize": 2,
"css.lint.unknownAtRules": "ignore",
"workbench.startupEditor": "none",
"go.toolsManagement.autoUpdate": true,
"volar.inlayHints.eventArgumentInInlineHandlers": false
}