-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vscode extension debug tools, editor focus, server control, updated f…
…or marketplace (#332)
- Loading branch information
Showing
33 changed files
with
1,425 additions
and
538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["semanticworkbenchteam.mcp-server-vscode"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
mcp-servers/mcp-server-open-deep-research/mcp_server/config.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: ['plugin:react/recommended', 'react-app'], | ||
ignorePatterns: ['build', '.*.js', '*.config.js', 'node_modules'], | ||
overrides: [], | ||
parserOptions: { | ||
project: './tsconfig.json', | ||
tsconfigRootDir: __dirname, | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
}, | ||
plugins: ['react', '@typescript-eslint', 'import', 'react-hooks', 'react-security'], | ||
rules: { | ||
'@typescript-eslint/brace-style': ['off'], | ||
'@typescript-eslint/space-before-function-paren': [ | ||
'error', | ||
{ anonymous: 'always', named: 'never', asyncArrow: 'always' }, | ||
], | ||
'@typescript-eslint/semi': ['error', 'always'], | ||
'@typescript-eslint/triple-slash-reference': ['error', { types: 'prefer-import' }], | ||
'@typescript-eslint/indent': ['off'], | ||
'@typescript-eslint/comma-dangle': ['error', 'always-multiline'], | ||
'@typescript-eslint/strict-boolean-expressions': 'off', | ||
'@typescript-eslint/member-delimiter-style': [ | ||
'error', | ||
{ | ||
multiline: { | ||
delimiter: 'semi', | ||
requireLast: true, | ||
}, | ||
singleline: { | ||
delimiter: 'semi', | ||
requireLast: false, | ||
}, | ||
}, | ||
], | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'react/jsx-props-no-spreading': 'warn', | ||
'react-hooks/rules-of-hooks': 'error', | ||
'react-hooks/exhaustive-deps': 'warn', | ||
'react/react-in-jsx-scope': 'off', | ||
}, | ||
settings: { | ||
react: { | ||
version: 'detect', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { defineConfig } from '@vscode/test-cli'; | ||
|
||
export default defineConfig({ | ||
files: 'out/test/**/*.test.js', | ||
files: 'out/test/**/*.test.js', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,134 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off", | ||
"editor.bracketPairColorization.enabled": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.fixAll": "explicit" | ||
}, | ||
"editor.guides.bracketPairs": "active", | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnType": true, | ||
"editor.formatOnSave": true, | ||
"files.eol": "\n", | ||
"files.exclude": { | ||
"out": false, // set this to true to hide the "out" folder with the compiled JS files | ||
"dist": false // set this to true to hide the "dist" folder with the compiled JS files | ||
}, | ||
"files.trimTrailingWhitespace": true, | ||
"[json]": { | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off", | ||
"editor.bracketPairColorization.enabled": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.fixAll": "explicit" | ||
}, | ||
"editor.guides.bracketPairs": "active", | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"search.exclude": { | ||
"out": true, // set this to false to include "out" folder in search results | ||
"dist": true // set this to false to include "dist" folder in search results | ||
}, | ||
// For use with optional extension: "streetsidesoftware.code-spell-checker" | ||
"cSpell.ignorePaths": ["ASSISTANT_BOOTSTRAP.md"], | ||
"cSpell.words": [ | ||
"amodio", | ||
"charliermarsh", | ||
"dbaeumer", | ||
"esbenp", | ||
"fastmcp", | ||
"modelcontextprotocol", | ||
"nosources", | ||
"pipx", | ||
"toplevel", | ||
"venv", | ||
"vscodeignore", | ||
"yarnrc" | ||
] | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnType": true, | ||
"editor.formatOnSave": true, | ||
"eslint.enable": true, | ||
"eslint.options": { | ||
"overrideConfigFile": ".eslintrc.cjs" | ||
}, | ||
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"], | ||
"eslint.workingDirectories": [ | ||
{ | ||
"mode": "auto" | ||
} | ||
], | ||
"files.eol": "\n", | ||
"files.exclude": { | ||
"out": false, // set this to true to hide the "out" folder with the compiled JS files | ||
"dist": false // set this to true to hide the "dist" folder with the compiled JS files | ||
}, | ||
"files.trimTrailingWhitespace": true, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.fixAll": "explicit" | ||
} | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.fixAll": "explicit" | ||
} | ||
}, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"out": true, // set this to false to include "out" folder in search results | ||
"dist": true // set this to false to include "dist" folder in search results | ||
}, | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"better-comments.highlightPlainText": true, | ||
"better-comments.multilineComments": true, | ||
"better-comments.tags": [ | ||
{ | ||
"tag": "!", | ||
"color": "#FF2D00", | ||
"strikethrough": false, | ||
"underline": false, | ||
"backgroundColor": "transparent", | ||
"bold": false, | ||
"italic": false | ||
}, | ||
{ | ||
"tag": "?", | ||
"color": "#3498DB", | ||
"strikethrough": false, | ||
"underline": false, | ||
"backgroundColor": "transparent", | ||
"bold": false, | ||
"italic": false | ||
}, | ||
{ | ||
"tag": "//", | ||
"color": "#474747", | ||
"strikethrough": true, | ||
"underline": false, | ||
"backgroundColor": "transparent", | ||
"bold": false, | ||
"italic": false | ||
}, | ||
{ | ||
"tag": "todo", | ||
"color": "#FF8C00", | ||
"strikethrough": false, | ||
"underline": false, | ||
"backgroundColor": "transparent", | ||
"bold": false, | ||
"italic": false | ||
}, | ||
{ | ||
"tag": "fixme", | ||
"color": "#FF2D00", | ||
"strikethrough": false, | ||
"underline": false, | ||
"backgroundColor": "transparent", | ||
"bold": false, | ||
"italic": false | ||
}, | ||
{ | ||
"tag": "*", | ||
"color": "#98C379", | ||
"strikethrough": false, | ||
"underline": false, | ||
"backgroundColor": "transparent", | ||
"bold": false, | ||
"italic": false | ||
} | ||
], | ||
// For use with optional extension: "streetsidesoftware.code-spell-checker" | ||
"cSpell.ignorePaths": ["ASSISTANT_BOOTSTRAP.md"], | ||
"cSpell.words": [ | ||
"amodio", | ||
"charliermarsh", | ||
"dbaeumer", | ||
"esbenp", | ||
"fastmcp", | ||
"modelcontextprotocol", | ||
"nosources", | ||
"pipx", | ||
"semanticworkbench", | ||
"toplevel", | ||
"venv", | ||
"vscodeignore", | ||
"yarnrc" | ||
] | ||
} |
Oops, something went wrong.