-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDocsWebsite.code-workspace
More file actions
80 lines (80 loc) · 2.05 KB
/
DocsWebsite.code-workspace
File metadata and controls
80 lines (80 loc) · 2.05 KB
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
{
"folders": [
{
"name": "📜 Riverscapes Docs",
"path": "."
},
],
"settings": {
"window.title": "Riverscapes Docs${separator}${activeEditorShort}${separator}${rootName}",
"[mdx]": {
"editor.wordWrap": "bounded",
"editor.wordWrapColumn": 80
},
"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,
"**/.docusaurus/**": true,
"**/build/**": true,
"**/public/**": true,
"**/dist/**": true
},
"files.exclude": {
"**/node_modules/**": true
},
"terminal.integrated.defaultProfile.linux": "zsh",
// Riverscapes documentation standards
// treat mdx as markdown
"files.associations": {
"*.mdx": "markdown"
},
// spell check settings
"cSpell.customDictionaries": {
"riverscapesWords": {
"name": "riverscapesWords",
"path": "./.vscode/riverscapesWords.txt",
"scope": "workspace",
"addWords": true
}
},
"cSpell.languageSettings": [
{
// use with Markdown files
"languageId": "markdown",
// Exclude code blocks (triple backticks and single backticks) and specific attribute strings
"ignoreRegExpList": [
"/^\\s*```[\\s\\S]*?^\\s*```/gm",
"`[^`]*?`",
"videoId=\"[^\"]*\""
]
}
],
"markdownlint.config": {
"MD013": false,
"MD033": {
"allowed_elements":["YouTubeEmbed","GoogleSlides"]
}
},
},
"extensions": {
"recommendations": [
"unifiedjs.vscode-mdx",
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
],
}
}