forked from scio-labs/inkathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinkathon.code-workspace
55 lines (55 loc) · 1.56 KB
/
inkathon.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
{
"folders": [
{
"name": "ROOT",
"path": "./"
},
{
"name": "Frontend",
"path": "./frontend"
},
{
"name": "Contracts",
"path": "./contracts"
}
],
"settings": {
"search.exclude": {
"**/*.{jpg,jpeg,png,svg,webm,mp4,ttf,woff,woff2}": true
},
"search.useIgnoreFiles": true,
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll.eslint": true
},
"files.associations": {
".env.*": "dotenv",
"*.css": "tailwindcss"
},
"[javascriptreact][typescriptreact][javascript][typescript][markdown][html][css][scss][sass][json][jsonc][yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"evenBetterToml.formatter.indentString": " ",
"evenBetterToml.formatter.columnWidth": 120,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"peacock.color": "#8758FF",
"workbench.colorCustomizations": {
"sash.hoverBorder": "#ac8bff",
"statusBar.background": "#8758ff",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#ac8bff",
"statusBarItem.remoteBackground": "#8758ff",
"statusBarItem.remoteForeground": "#e7e7e7"
}
}
}