-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprim-rpc.code-workspace
100 lines (100 loc) · 2.39 KB
/
prim-rpc.code-workspace
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
{
"folders": [
{
"name": "🌳 Prim+RPC",
"path": "."
},
{
"name": "📙 Library",
"path": "./libs/rpc"
},
{
"name": "📙 Plugins",
"path": "./libs/plugins"
},
{
"name": "📙 Tooling",
"path": "./libs/tooling"
},
{
"name": "🌐 Documentation",
"path": "./apps/documentation"
},
{
"name": "📗 Example Server",
"path": "./apps/example"
},
{
"name": "📗 Example Module",
"path": "./libs/example"
}
],
"settings": {
"editor.rulers": [80, 120],
"editor.wordWrapColumn": 120,
"editor.renderWhitespace": "selection",
"editor.detectIndentation": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.linkedEditing": true,
"editor.formatOnSave": true,
"workbench.editor.pinnedTabSizing": "compact",
"npm.packageManager": "auto",
"stylelint.validate": ["css", "less", "postcss", "scss"],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"yaml.schemas": {
"https://json.schemastore.org/taskfile.json": "Taskfile.*.yml"
},
"files.associations": {
"*.Corefile": "caddyfile"
},
"cSpell.words": [
"frontmatter",
"composables",
"defu",
"doseofted",
"fastify",
"Klingenberg",
"pnpm",
"Taskfile",
"Turborepo",
"websockets"
],
"cSpell.enableFiletypes": ["dockerfile", "mdx"],
"css.lint.unknownAtRules": "ignore",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"peacock.color": "#57b0ca",
"peacock.remoteColor": "#57b0ca",
"peacock.affectStatusAndTitleBorders": true,
"peacock.affectTitleBar": false,
"peacock.affectActivityBar": false,
"peacock.showColorInStatusBar": false,
"workbench.colorCustomizations": {
"sash.hoverBorder": "#7ec2d6",
"statusBar.background": "#57b0ca",
"statusBar.border": "#57b0ca",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#3999b5",
"statusBarItem.remoteBackground": "#57b0ca",
"statusBarItem.remoteForeground": "#15202b"
}
},
"extensions": {
"recommendations": [
"redhat.vscode-yaml",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"astro-build.astro-vscode",
"unifiedjs.vscode-mdx",
"streetsidesoftware.code-spell-checker"
]
}
}