mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-29 21:30:18 +00:00
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"python.analysis.include": [
|
|
"libs/**",
|
|
],
|
|
"python.analysis.exclude": [
|
|
"**/node_modules",
|
|
"**/__pycache__",
|
|
"**/.pytest_cache",
|
|
"**/.*",
|
|
],
|
|
"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,
|
|
"**/node_modules": true,
|
|
"**/.git": false
|
|
},
|
|
"search.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/*.pyc": true,
|
|
"_dist/**": 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",
|
|
"github.copilot.chat.commitMessageGeneration.instructions": [
|
|
{
|
|
"file": ".github/workflows/pr_lint.yml"
|
|
}
|
|
]
|
|
}
|