mirror of
https://github.com/zilliztech/claude-context.git
synced 2025-10-06 01:10:02 +03:00
26 lines
667 B
JSON
26 lines
667 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"files.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": false,
|
|
"**/out": false
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true,
|
|
"**/out": true
|
|
},
|
|
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
|
|
"typescript.tsc.autoDetect": "off",
|
|
"typescript.preferences.includePackageJsonAutoImports": "on",
|
|
// ESLint settings
|
|
"eslint.workingDirectories": [
|
|
"packages/vscode-extension",
|
|
"packages/core"
|
|
],
|
|
// Format on save
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
} |