- Documented certificate management security features in security.md, including backup and recovery processes. - Implemented CertificateCleanupDialog component for confirming deletion of orphaned certificates when deleting proxy hosts. - Enhanced ProxyHosts page to check for orphaned certificates and prompt users accordingly during deletion. - Added tests for certificate cleanup prompts and behaviors in ProxyHosts, ensuring correct handling of unique, shared, and production certificates.
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"python-envs.pythonProjects": [
|
|
{
|
|
"path": "",
|
|
"envManager": "ms-python.python:venv",
|
|
"packageManager": "ms-python.python:pip"
|
|
}
|
|
]
|
|
,
|
|
"gopls": {
|
|
"env": {
|
|
"GOWORK": "off",
|
|
"GOFLAGS": "-mod=mod",
|
|
"GOTOOLCHAIN": "auto"
|
|
},
|
|
"directoryFilters": [
|
|
"-**/pkg/mod/**",
|
|
"-**/go/pkg/mod/**",
|
|
"-**/root/go/pkg/mod/**"
|
|
]
|
|
},
|
|
"go.buildFlags": ["-tags=ignore", "-mod=mod"],
|
|
"go.toolsEnvVars": {
|
|
"GOWORK": "off",
|
|
"GOFLAGS": "-mod=mod",
|
|
"GOTOOLCHAIN": "auto"
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/pkg/mod/**": true,
|
|
"**/go/pkg/mod/**": true,
|
|
"**/root/go/pkg/mod/**": true
|
|
},
|
|
"search.exclude": {
|
|
"**/pkg/mod/**": true,
|
|
"**/go/pkg/mod/**": true,
|
|
"**/root/go/pkg/mod/**": true
|
|
},
|
|
"githubPullRequests.ignoredPullRequestBranches": [
|
|
"main"
|
|
],
|
|
// Toggle workspace-specific keybindings (used by .vscode/keybindings.json)
|
|
"charon.workspaceKeybindingsEnabled": true
|
|
}
|