Debugger Tool Improvements (#848)

A variety of debugger internal fixes + linter/style improvements
This commit is contained in:
David Kincaid
2025-07-31 15:17:33 -04:00
committed by GitHub
parent dfe97cb952
commit 37bb1116fb
33 changed files with 523 additions and 461 deletions

View File

@@ -1,4 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"vcs": {
"defaultBranch": "master"
},
@@ -9,18 +10,22 @@
"indentWidth": 4,
"lineWidth": 120,
"lineEnding": "lf",
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts", "tools/**/*.ts"]
},
"files": {
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts", "tools/**/*.ts"],
"ignore": ["node_modules"]
},
"linter": {
"rules": {
"style": {
"noUselessElse": "off",
"useImportType": "off"
}
"useImportType": "off",
"noParameterAssign": "warn"
},
"suspicious": {
"noExplicitAny": "off"
}
}
}
}