mirror of
https://github.com/hwchase17/langchain.git
synced 2026-02-21 06:33:41 +00:00
Lots of work that wasn't directly related to core improvements/messages/testing functionality
83 lines
2.0 KiB
JSON
83 lines
2.0 KiB
JSON
{
|
|
"python.analysis.include": [
|
|
"libs/**",
|
|
"docs/**",
|
|
"cookbook/**"
|
|
],
|
|
"python.analysis.exclude": [
|
|
"**/node_modules",
|
|
"**/__pycache__",
|
|
"**/.pytest_cache",
|
|
"**/.*",
|
|
"_dist/**",
|
|
"docs/_build/**",
|
|
"docs/api_reference/_build/**"
|
|
],
|
|
"python.analysis.autoImportCompletions": true,
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"python.testing.cwd": "${workspaceFolder}",
|
|
"python.linting.enabled": true,
|
|
"python.linting.ruffEnabled": true,
|
|
"[python]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports.ruff": "explicit",
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
},
|
|
"editor.rulers": [
|
|
88
|
|
],
|
|
"editor.tabSize": 4,
|
|
"editor.insertSpaces": true,
|
|
"editor.trimAutoWhitespace": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.pytest_cache": true,
|
|
"**/*.pyc": true,
|
|
"**/.mypy_cache": true,
|
|
"**/.ruff_cache": true,
|
|
"_dist/**": true,
|
|
"docs/_build/**": true,
|
|
"docs/api_reference/_build/**": true,
|
|
"**/node_modules": true,
|
|
"**/.git": false
|
|
},
|
|
"search.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/*.pyc": true,
|
|
"_dist/**": true,
|
|
"docs/_build/**": true,
|
|
"docs/api_reference/_build/**": true,
|
|
"**/node_modules": true,
|
|
"**/.git": true,
|
|
"uv.lock": true,
|
|
"yarn.lock": true
|
|
},
|
|
"git.autofetch": true,
|
|
"git.enableSmartCommit": true,
|
|
"jupyter.askForKernelRestart": false,
|
|
"jupyter.interactiveWindow.textEditor.executeSelection": true,
|
|
"[markdown]": {
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": {
|
|
"comments": "off",
|
|
"strings": "off",
|
|
"other": "off"
|
|
}
|
|
},
|
|
"[yaml]": {
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true
|
|
},
|
|
"[json]": {
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true
|
|
},
|
|
"python.terminal.activateEnvironment": false,
|
|
"python.defaultInterpreterPath": "./.venv/bin/python"
|
|
}
|