-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
99 lines (99 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 14,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.lineHeight": 1.8,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"terminal.integrated.showExitAlert": false,
"[prisma]": {
"editor.formatOnSave": true
},
"typescript.suggest.autoImports": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.compactFolders": false,
"editor.accessibilitySupport": "off",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.defaultProfile.osx": "fish",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": true,
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "JetBrains Mono",
"editor.tabSize": 2,
"security.workspace.trust.untrustedFiles": "newWindow",
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true,
// "node_modules": true
},
"tabnine.experimentalAutoImports": true,
"workbench.iconTheme": "symbols",
"editor.minimap.enabled": false,
"update.mode": "start",
"terminal.integrated.gpuAcceleration": "off",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
"[python]": {
"editor.formatOnType": true
},
"liveServer.settings.donotShowInfoMsg": true,
"symbols.hidesExplorerArrows": false,
"workbench.editor.empty.hint": "hidden",
"redhat.telemetry.enabled": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"window.commandCenter": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"workbench.activityBar.location": "hidden",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
}