mirror of
https://github.com/trycua/computer.git
synced 2025-12-30 01:49:55 -06:00
25 lines
449 B
JSON
25 lines
449 B
JSON
{
|
|
"include": [
|
|
"**/*.py"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/__pycache__/**",
|
|
"**/.*/**",
|
|
"**/venv/**",
|
|
"**/.venv/**",
|
|
"**/dist/**",
|
|
"**/build/**",
|
|
".pdm-build/**",
|
|
"**/.git/**",
|
|
"examples/**",
|
|
"notebooks/**",
|
|
"logs/**",
|
|
"screenshots/**"
|
|
],
|
|
"typeCheckingMode": "basic",
|
|
"useLibraryCodeForTypes": true,
|
|
"reportMissingImports": false,
|
|
"reportMissingModuleSource": false
|
|
}
|