91e75e620b
CI: cua-driver distro-compat matrix / debian:12 (glibc 2.36) (push) Has been cancelled
CI: SPDX Headers / Check SPDX headers (warn-only) (push) Has been cancelled
CD: Docs MCP Server / build (linux/amd64) (push) Has been cancelled
CD: Docs MCP Server / build (linux/arm64) (push) Has been cancelled
CD: Docs MCP Server / merge (push) Has been cancelled
CI: cua-driver distro-compat matrix / Resolve release version (push) Has been cancelled
CI: cua-driver distro-compat matrix / fedora:41 (glibc 2.40) (push) Has been cancelled
CI: cua-driver distro-compat matrix / rockylinux:9 (glibc 2.34) (push) Has been cancelled
CI: cua-driver distro-compat matrix / ubuntu:22.04 (glibc 2.35) (push) Has been cancelled
CI: cua-driver distro-compat matrix / ubuntu:24.04 (glibc 2.39) (push) Has been cancelled
CI: cua-driver distro-compat matrix / Distro compat summary (push) Has been cancelled
CI: Rust Linux unit / Rust Linux unit and compile (push) Has been cancelled
CI: Rust Windows unit / Rust Windows unit and compile (push) Has been cancelled
CI: Nix Linux Rust source / Nix / compositor build (push) Has been cancelled
CI: Nix Linux Rust source / Nix / driver package (push) Has been cancelled
CI: Nix Linux Rust source / Nix / Rust unit tests (push) Has been cancelled
132 lines
3.9 KiB
Plaintext
132 lines
3.9 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"name": "cua-root",
|
|
"path": ".."
|
|
},
|
|
{
|
|
"name": "computer",
|
|
"path": "../libs/python/computer"
|
|
},
|
|
{
|
|
"name": "agent",
|
|
"path": "../libs/python/agent"
|
|
},
|
|
{
|
|
"name": "som",
|
|
"path": "../libs/python/som"
|
|
},
|
|
{
|
|
"name": "computer-server",
|
|
"path": "../libs/python/computer-server"
|
|
},
|
|
{
|
|
"name": "core",
|
|
"path": "../libs/python/core"
|
|
}
|
|
],
|
|
"settings": {
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/__pycache__": true,
|
|
"**/.pytest_cache": true,
|
|
"**/*.pyc": true
|
|
},
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.nosetestsEnabled": false,
|
|
"python.testing.pytestArgs": [
|
|
"libs"
|
|
],
|
|
"python.analysis.extraPaths": [
|
|
"${workspaceFolder:cua-root}/libs/python/core",
|
|
"${workspaceFolder:cua-root}/libs/python/computer",
|
|
"${workspaceFolder:cua-root}/libs/python/agent",
|
|
"${workspaceFolder:cua-root}/libs/python/som",
|
|
"${workspaceFolder:cua-root}/.vscode/typings"
|
|
],
|
|
"python.envFile": "${workspaceFolder:cua-root}/.env",
|
|
"python.defaultInterpreterPath": "${workspaceFolder:cua-root}/.venv/bin/python",
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"python.analysis.autoSearchPaths": true,
|
|
"python.analysis.stubPath": "${workspaceFolder:cua-root}/.vscode/typings",
|
|
"python.analysis.indexing": false,
|
|
"python.analysis.exclude": [
|
|
"**/node_modules/**",
|
|
"**/__pycache__/**",
|
|
"**/.*/**",
|
|
"**/venv/**",
|
|
"**/.venv/**",
|
|
"**/dist/**",
|
|
"**/build/**",
|
|
".pdm-build/**",
|
|
"**/.git/**",
|
|
"logs/**",
|
|
"screenshots/**"
|
|
],
|
|
"python.analysis.packageIndexDepths": [
|
|
{
|
|
"name": "computer",
|
|
"depth": 2
|
|
},
|
|
{
|
|
"name": "agent",
|
|
"depth": 2
|
|
},
|
|
{
|
|
"name": "som",
|
|
"depth": 2
|
|
},
|
|
{
|
|
"name": "core",
|
|
"depth": 2
|
|
}
|
|
],
|
|
"python.autoComplete.extraPaths": [
|
|
"${workspaceFolder:cua-root}/libs/python/core",
|
|
"${workspaceFolder:cua-root}/libs/python/computer",
|
|
"${workspaceFolder:cua-root}/libs/python/agent",
|
|
"${workspaceFolder:cua-root}/libs/python/som"
|
|
],
|
|
"python.languageServer": "None",
|
|
"[python]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
}
|
|
}
|
|
},
|
|
"tasks": {
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build Dependencies",
|
|
"type": "shell",
|
|
"command": "${workspaceFolder}/scripts/build.sh",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new",
|
|
"clear": true
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"options": {
|
|
"shell": {
|
|
"executable": "/bin/bash",
|
|
"args": ["-l", "-c"]
|
|
}
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|
|
}
|