-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo-care.code-workspace
147 lines (147 loc) · 4.81 KB
/
repo-care.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"folders": [
{
"path": ".",
},
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#2f7c47",
"activityBar.background": "#2f7c47",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#422c74",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#2f7c47",
"statusBar.background": "#215732",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#2f7c47",
"statusBarItem.remoteBackground": "#215732",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#215732",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#21573299",
"titleBar.inactiveForeground": "#e7e7e799",
"sideBar.border": "#2f7c47",
"tab.activeBorder": "#2f7c47"
},
"window.zoomLevel": 1.25,
"editor.suggestSelection": "first",
"files.exclude": {
".git/**": true
},
"editor.bracketPairColorization.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
},
"eslint.validate": [
"mdx",
"javascript",
"typescript"
],
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.minimap.renderCharacters": false,
"editor.comments.insertSpace": false,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
},
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"zenMode.centerLayout": false,
"prettier.printWidth": 120,
"workbench.list.multiSelectModifier": "alt",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.linkedEditing": true,
"editor.multiCursorModifier": "alt",
"editor.formatOnSave": true,
"javascript.preferences.quoteStyle": "double",
"prettier.singleQuote": false,
"explorer.confirmDelete": false,
"editor.snippetSuggestions": "top",
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.iconTheme": "file-icons",
"git.confirmSync": false,
"workbench.startupEditor": "none",
"window.autoDetectColorScheme": true,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.json": "package-lock.json",
".gitignore": ".editorconfig, .jshintrc, .prettier*, .eslint*, .npm*, .nojekyll, .markdown*",
"readme.md": "*.md",
},
"git.enableSmartCommit": true,
"git.autofetch": true,
"explorer.excludeGitIgnore": false,
"git.branchPrefix": "feature/",
"git.branchRandomName.enable": true,
"search.showLineNumbers": true,
"workbench.editorAssociations": {
"*.log": "default",
},
"editor.minimap.enabled": true,
"workbench.colorTheme": "Tokyo Night Storm",
"editor.fontSize": 14,
"editor.accessibilitySupport": "off",
"editor.minimap.size": "fit",
"cSpell.customDictionaries": {
"myDictionary": {
"name": "myDictionary",
"path": "~/myDictionary.txt",
"scope": "user",
"addWords": true,
},
"custom": true,
},
"debug.javascript.codelens.npmScripts": "never",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"js/ts.implicitProjectConfig.checkJs": true,
"editor.detectIndentation": false,
"peacock.color": "#215732",
"cSpell.words": [],
"css.lint.unknownAtRules": "ignore",
"files.autoSave": "onFocusChange",
"editor.dragAndDrop": false,
"editor.tabCompletion": "onlySnippets",
"editor.formatOnSaveMode": "file",
"files.eol": "\r\n",
"files.readonlyExclude": {
"dist/**": true,
},
"window.title": "${rootNameShort}${separator}${activeEditorShort}${separator}${activeFolderMedium}",
"explorer.fileNesting.expand": false,
"search.exclude": {
"dist/**": true,
"package-lock.json": true,
},
"peacock.affectSideBarBorder": true,
"prettier.quoteProps": "consistent",
"prettier.documentSelectors": [
"**/*.astro"
],
"git.branchProtection": [
"develop",
"main"
],
"git.enableCommitSigning": false,
"git.postCommitCommand": "push",
"workbench.tree.enableStickyScroll": false,
"editor.stickyScroll.enabled": true,
"workbench.editor.pinnedTabSizing": "compact",
"prettier.trailingComma": "none",
"editor.inlayHints.enabled": "offUnlessPressed",
"workbench.layoutControl.enabled": false,
"[markdown]": {
"diffEditor.ignoreTrimWhitespace": false,
},
"files.associations": {
"CODEOWNERS": "plaintext",
},
},
}