-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
71 lines (64 loc) · 2.06 KB
/
Copy pathvscode-settings.json
File metadata and controls
71 lines (64 loc) · 2.06 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
{
// Appearance settings
"workbench.colorTheme": "Night Owl",
"editor.fontFamily": "'JetBrainsMonoNL Nerd Font Mono'",
"editor.fontWeight": "400",
"editor.fontLigatures": false,
"editor.fontSize": 15,
"editor.rulers": [120],
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"terminal.integrated.fontSize": 14,
"editor.wordWrap": "on",
// General coding
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.linkedEditing": true,
"editor.inlineSuggest.enabled": true,
"editor.parameterHints.enabled": true,
"editor.suggestSelection": "first",
// ESLint
"eslint.validate": ["javascript", "typescriptreact", "javascriptreact"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// Extensions
"extensions.autoCheckUpdates": true,
// Language specific
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
// Better Defaults
"editor.copyWithSyntaxHighlighting": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.emptySelectionClipboard": false,
"workbench.editor.enablePreview": false,
"window.newWindowDimensions": "inherit",
"editor.multiCursorModifier": "ctrlCmd",
"files.trimTrailingWhitespace": true,
"diffEditor.renderSideBySide": false,
// "editor.snippetSuggestions": "top",
"editor.detectIndentation": true,
"window.nativeFullScreen": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
// Hide Everything
"workbench.activityBar.location": "hidden",
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": "single",
"editor.minimap.enabled": false
}