-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditor.jsonc
More file actions
82 lines (81 loc) · 2.17 KB
/
editor.jsonc
File metadata and controls
82 lines (81 loc) · 2.17 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
81
{
// VS Code settings used while validating syntax samples
"files.exclude": {
"**/.DS_Store": true,
"**/dist": true,
"**/coverage": true,
"**/android/app/build": true
},
"search.exclude": {
"**/node_modules": true,
"**/android/.gradle": true,
"**/ios/Pods": true
},
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.renderWhitespace": "selection",
"editor.guides.bracketPairs": true,
"editor.minimap.enabled": false,
"editor.inlineSuggest.enabled": true,
"workbench.editor.enablePreview": false,
"workbench.tree.indent": 16,
"workbench.startupEditor": "none",
"explorer.sortOrder": "type",
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#172b32",
"titleBar.activeForeground": "#f5f2e8",
"statusBar.background": "#10333a",
"statusBar.foreground": "#e9f1ef",
"activityBar.background": "#13282d",
"sideBar.background": "#15292e"
},
"files.associations": {
"*.ets": "typescript",
"*.mts": "typescript",
"*.cts": "typescript",
"*.json5": "json",
"*.jsonc": "json",
"*.jinja2": "jinja-html",
"*.liquid": "html"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "on"
}
},
"notebook.lineNumbers": "on",
"notebook.compactView": false,
"notebook.globalToolbar": true,
"git.openRepositoryInParentFolders": "always",
"git.confirmSync": false,
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.env.windows": {
"CODE_READER_WORKSPACE": "D:/xdnote/code-reader",
"GITCODE_VIEWER_FIXTURES": "D:/xdnote/GitCodeViewer"
},
"cSpell.words": [
"codemirror",
"drawio",
"GitCodeViewer",
"isomorphic",
"jinja",
"mermaid",
"notebook",
"sparql",
"webview"
],
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.updateImportsOnFileMove.enabled": "always"
}