hasExecutableSql returns as soon as it meets a quote character, so the quote variable was assigned and never read: the `if (quote)` branch could never run. eslint reported it as a useless assignment and the error blocks the release gate on main. Removing the variable and the unreachable branch keeps behaviour identical, since encountering a quote already means the SQL is executable. Also drops an eslint-disable directive in csr's output error reporter that suppressed nothing. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
42 lines
790 B
JSON
42 lines
790 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "basic-app",
|
|
"runtimeExecutable": "bun",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"packages/cli/src/index.ts",
|
|
"dev",
|
|
"examples/basic-app",
|
|
"--port=3520"
|
|
],
|
|
"port": 3520
|
|
},
|
|
{
|
|
"name": "pms-public",
|
|
"runtimeExecutable": "bun",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"--cwd",
|
|
"D:/Company/pms/apps/public",
|
|
"dev",
|
|
"--port=3610"
|
|
],
|
|
"port": 3610
|
|
},
|
|
{
|
|
"name": "component-showcase",
|
|
"runtimeExecutable": "bun",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"packages/cli/src/index.ts",
|
|
"dev",
|
|
"examples/component-showcase",
|
|
"--port=3400"
|
|
],
|
|
"port": 3400
|
|
}
|
|
]
|
|
}
|