mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
39 lines
952 B
JSON
39 lines
952 B
JSON
{
|
|
"include": [
|
|
"**/*.py"
|
|
],
|
|
"exclude": [
|
|
"**/__pycache__/**",
|
|
"**/.git/objects/**",
|
|
"**/.git/subtree-cache/**",
|
|
"**/.hg/store/**",
|
|
"**/.ipynb_checkpoints/**",
|
|
"**/.mypy_cache/**",
|
|
"**/.pytest_cache/**",
|
|
"**/.venv/**",
|
|
"**/*.egg-info/**",
|
|
"**/build/**",
|
|
"**/dist/**",
|
|
"**/node_modules/*/**",
|
|
],
|
|
"executionEnvironments": [
|
|
{
|
|
"root": ".",
|
|
"pythonVersion": "3.11",
|
|
"extraPaths": [
|
|
"../../packages/python/nemesiscommon",
|
|
"../../packages/python/nemesispb",
|
|
]
|
|
},
|
|
],
|
|
"ignore": [
|
|
"enrichment/lib/ext_tools"
|
|
],
|
|
"pythonVersion": "3.11",
|
|
"reportMissingImports": true,
|
|
"reportMissingTypeStubs": false,
|
|
"typeCheckingMode": "basic",
|
|
"useLibraryCodeForTypes": true,
|
|
"venvPath": ".",
|
|
"venv": ".venv"
|
|
} |