-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.settings.json
More file actions
131 lines (131 loc) · 4.63 KB
/
Copy path.settings.json
File metadata and controls
131 lines (131 loc) · 4.63 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.fontFamily": "MesloLGS NF",
"editor.fontFamily": "JetBrains Mono",
"prettier.singleQuote": true,
"terminal.integrated.cursorBlinking": true,
"editor.formatOnType": false,
"editor.suggest.showStatusBar": true,
"explorer.confirmDelete": false,
"emmet.showSuggestionsAsSnippets": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.showAbbreviationSuggestions": false,
"editor.formatOnPaste": true,
"explorer.confirmDragAndDrop": false,
"workbench.startupEditor": "newUntitledFile",
"zenMode.hideActivityBar": false,
"editor.fontLigatures": true,
"security.workspace.trust.untrustedFiles": "open",
"emmet.excludeLanguages": ["markdown"],
"files.associations": {
"\"*.extension\"": "\"js\""
},
"editor.quickSuggestions": {
"strings": true
},
"files.exclude": {
"**/node_modules": false
},
"typescript.updateImportsOnFileMove.enabled": "always",
"npm.keybindingsChangedWarningShown": true,
"editor.fontWeight": "500",
"liveSassCompile.settings.excludeList": ["**/node_modules/**", ".vscode/**"],
"eslint.format.enable": true,
"eslint.workingDirectories": [{ "mode": "auto" }],
"files.autoSave": "afterDelay",
"editor.accessibilitySupport": "off",
"terminal.integrated.tabs.enabled": true,
"code-runner.runInTerminal": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.external.osxExec": "/Applications/iTerm.app",
"zenMode.hideStatusBar": false,
"workbench.editorAssociations": {
"*.db": "default"
},
"search.exclude": {
"**/.git": true,
"**/bower_components": true,
"**/tmp": true,
"**/node_modules": true
},
"search.useGlobalIgnoreFiles": true,
"window.openFilesInNewWindow": "on",
"window.clickThroughInactive": false,
"window.closeWhenEmpty": true,
"editor.inlineSuggest.enabled": true,
"git.alwaysSignOff": true,
"editor.stickyScroll.enabled": true,
"editor.guides.bracketPairs": true,
"editor.codeActionsOnSave": {
"source.fixAll": "always"
},
"eslint.validate": ["javascript"],
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"security.workspace.trust.banner": "always",
"security.workspace.trust.startupPrompt": "never",
"security.workspace.trust.enabled": false,
"workbench.fontAliasing": "antialiased",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.alternativeDefinitionCommand": "editor.action.goToImplementation",
"editor.gotoLocation.alternativeDeclarationCommand": "editor.action.goToImplementation",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleDeclarations": "goto",
"terminal.integrated.fontWeight": "normal",
"workbench.sideBar.location": "right",
"liveServer.settings.donotShowInfoMsg": true,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"yaml": true,
"go": false,
"typescript": true
},
"javascript.preferences.importModuleSpecifier": "non-relative",
"editor.fontSize": 13.5,
"workbench.colorCustomizations": {
"notebook.editorBackground": "#00AA00"
},
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "smooth",
"workbench.editor.empty.hint": "hidden",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"nxConsole.showNodeVersionOnStartup": false,
"workbench.tree.enableStickyScroll": true,
"workbench.colorTheme": "GitHub Dark",
"github.copilot.editor.enableAutoCompletions": true,
"extensions.ignoreRecommendations": true,
"supermaven.allowGitignore": true,
"git.autofetch": true,
"editor.minimap.enabled": false
}