mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-02-17 07:03:58 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python Debugger: Current File",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "tests.py",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "tests.py",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "sample",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "parsedmarc.cli",
|
|
"args": ["samples/private/sample"]
|
|
},
|
|
{
|
|
"name": "sortlists.py",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "sortlists.py",
|
|
"cwd": "${workspaceFolder}/parsedmarc/resources/maps",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "find_unknown_base_reverse_dns.py",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "find_unknown_base_reverse_dns.py",
|
|
"cwd": "${workspaceFolder}/parsedmarc/resources/maps",
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
}
|