-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJsonSchema42.code-workspace
58 lines (58 loc) · 1.38 KB
/
JsonSchema42.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
{
"folders": [
{
"name": "docs",
"path": "docs",
},
{
"name": "fixtures",
"path": "fixtures",
},
{
"name": "npm/jns42-generator",
"path": "packages/npm/jns42-generator",
},
{
"name": "npm/jns42-core",
"path": "packages/npm/jns42-core",
},
{
"name": "cargo/jns42-generator",
"path": "packages/cargo/jns42-generator",
},
{
"name": "cargo/jns42-core",
"path": "packages/cargo/jns42-core",
},
],
"settings": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.organizeImports": "always",
},
"editor.rulers": [100],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.tsdk": "./node_modules/typescript/lib",
"npm.packageManager": "npm",
"rust-analyzer.check.command": "clippy",
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
},
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml",
},
},
"extensions": {
"recommendations": [
"ryanluker.vscode-coverage-gutters",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker",
"rust-lang.rust-analyzer",
"vadimcn.vscode-lldb",
"editorconfig.editorconfig",
"tamasfe.even-better-toml",
],
"unwantedRecommendations": [],
},
}