-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.js
97 lines (97 loc) · 2.06 KB
/
settings.js
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
// ======================================================== \\
const settings =
{
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Default Dark+",
"errorLens.excludeBySource": [
"eslint(no-useless-escape)",
"eslint(no-undef)"
],
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"symbols.hidesExplorerArrows": false,
"editor.tabSize": 2,
"editor.indentSize": "tabSize",
"better-comments.highlightPlainText": true,
"editor.fontLigatures": false,
"eslint.format.enable": true,
"eslint.alwaysShowStatus": true,
"eslint.codeAction.showDocumentation": {
"enable": true
},
"javascript.format.enable": true,
"typescript.suggest.paths": false,
"javascript.suggest.paths": false,
"peacock.favoriteColors": [
{
"name": "Angular Red (Pastel)",
"value": "#F4A1A4"
},
{
"name": "Azure Blue (Pastel)",
"value": "#7FBFFF"
},
{
"name": "JavaScript Yellow (Pastel)",
"value": "#FDF6B2"
},
{
"name": "Mandalorian Blue (Pastel)",
"value": "#8BAAD6"
},
{
"name": "Node Green (Pastel)",
"value": "#8FAF90"
},
{
"name": "React Blue (Pastel)",
"value": "#AEE4FB"
},
{
"name": "Something Different (Pastel)",
"value": "#C597B0"
},
{
"name": "Svelte Orange (Pastel)",
"value": "#FFA17F"
},
{
"name": "Vue Green (Pastel)",
"value": "#9ED1B6"
},
{
"name": "Dark Marine",
"value": "#020926"
},
{
"name": "Marine",
"value": "#04124d"
},
{
"name": "Purple",
"value": "#3c044d"
},
{
"name": "Lime",
"value": "#1c850c"
},
{
"name": "Lava",
"value": "#870909"
},
{
"name": "Sky",
"value": "#098787"
},
{
"name": "Pedro",
"value": "#692f08"
}
],
"peacock.affectActivityBar": false,
"peacock.affectStatusBar": false,
"peacock.surpriseMeOnStartup": true,
"peacock.surpriseMeFromFavoritesOnly": true
}