mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
style: Trigger pre-commit lint
This commit is contained in:
parent
1f0cb9523f
commit
f80b710b72
2 changed files with 23 additions and 26 deletions
|
|
@ -66,11 +66,8 @@
|
||||||
"compounds": [
|
"compounds": [
|
||||||
{
|
{
|
||||||
"name": "Honcho + Web debug",
|
"name": "Honcho + Web debug",
|
||||||
"configurations": [
|
"configurations": ["Bench Web", "Honcho SocketIO Watch Schedule Worker"],
|
||||||
"Bench Web",
|
|
||||||
"Honcho SocketIO Watch Schedule Worker"
|
|
||||||
],
|
|
||||||
"stopAll": true
|
"stopAll": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,22 @@
|
||||||
{
|
{
|
||||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
// for the documentation about the tasks.json format
|
// for the documentation about the tasks.json format
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "Clean Honcho SocketIO Watch Schedule Worker",
|
"label": "Clean Honcho SocketIO Watch Schedule Worker",
|
||||||
"detail": "When stopping the debug process from vscode window, the honcho won't receive the SIGINT signal. This task will send the SIGINT signal to the honcho processes.",
|
"detail": "When stopping the debug process from vscode window, the honcho won't receive the SIGINT signal. This task will send the SIGINT signal to the honcho processes.",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "pkill -SIGINT -f bench; pkill -SIGINT -f socketio",
|
"command": "pkill -SIGINT -f bench; pkill -SIGINT -f socketio",
|
||||||
"isBackground": false,
|
"isBackground": false,
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"echo": true,
|
"echo": true,
|
||||||
"reveal": "silent",
|
"reveal": "silent",
|
||||||
"focus": false,
|
"focus": false,
|
||||||
"panel": "shared",
|
"panel": "shared",
|
||||||
"showReuseMessage": false,
|
"showReuseMessage": false,
|
||||||
"close": true
|
"close": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue