Ghost/.vscode/settings.json

42 lines
1.1 KiB
JSON

{
"editor.quickSuggestions": {
"strings": true
},
"eslint.workingDirectories": [
{
"pattern": "./apps/*/"
},
{
"pattern": "./ghost/*/"
}
],
"search.exclude": {
"**/*.js.snap": true,
"**/.git": true,
"**/build/*": true,
"**/coverage/**": true,
"**/dist/**": true,
"**/ghost.map": true,
"**/node_modules": true,
"ghost/core/core/built/**": true
},
"tailwindCSS.experimental.classRegex": [
["clsx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
],
"workbench.colorCustomizations": {
"editorIndentGuide.background": "#00000000",
"[Material Theme Palenight High Contrast]": {
"tab.activeBorder": "#00000000",
"tab.inactiveBackground": "#1b1e2b",
"activityBar.activeBorder": "#a6accd",
"editorGroupHeader.tabsBackground": "#1b1e2b",
"tab.border": "#00000000",
"sideBarSectionHeader.border": "#00000000",
"terminal.border": "#a6accd"
},
"activityBar.background": "#0C3429",
"titleBar.activeBackground": "#114939",
"titleBar.activeForeground": "#F4FDFA"
}
}