-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
49 lines (49 loc) · 1.64 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
{
"editor.fontFamily": "Monaco",
// "editor.fontFamily": "JetBrains Mono",
// "editor.fontFamily": "Ubuntu Mono",
// "editor.fontFamily": "Inconsolata",
// "editor.fontFamily": "Source Code Pro",
// "editor.fontFamily": "Consolas",
// "editor.fontFamily": "Hack",
// "editor.fontFamily": "Fira Code",
// "editor.fontFamily": "Cascadia Code",
// "editor.fontFamily": "IBM Plex",
"editor.fontLigatures": true, // Light
"editor.fontSize": 14,
"editor.letterSpacing": 0.4,
"editor.lineHeight": 24,
"editor.fontWeight": "300",
// "editor.fontWeight": "400" // Regular
// "editor.fontWeight": "500" // Medium
// "editor.fontWeight": "600" // Bold
"window.zoomLevel": 1,
"workbench.colorTheme": "Tokyo Night Storm",
"workbench.iconTheme": "material-icon-theme",
// RocketSeat
"workbench.startupEditor": "newUntitledFile",
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"workbench.editor.enablePreview": false,
// prettier + eslint
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}