-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRiverscapesWebsite.code-workspace
53 lines (53 loc) · 1.13 KB
/
RiverscapesWebsite.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
{
"folders": [
{
"name": "📜 Content",
"path": "./content/page"
},
{
"name": "🌄 Static",
"path": "./static"
},
{
"name": "🏠 Root",
"path": "."
}
],
"settings": {
"window.title": "Riverscapes Website Gatsby${separator}${activeEditorShort}${separator}${rootName}",
"[mdx]": {
"editor.wordWrap": "on",
"editor.formatOnSave": false
},
"css.lint.validProperties": [
"composes"
],
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#001768",
"sideBar.background": "#242132",
"editor.background": "#1e1c2c"
},
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.cache/**": true
},
"search.exclude": {
"**/node_modules/**": true,
"**/.cache/**": true,
"**/public/**": true,
"**/dist/**": true,
},
"files.exclude": {
"**/node_modules/**": true
}
},
"extensions": {
"recommendations": [
"unifiedjs.vscode-mdx"
]
}
}