chore(tooling): enforce formatting and refresh TypeScript checks (#104239)

* chore(tooling): enforce current formatter and refresh checks

* chore(tooling): keep release changelog formatter-owned

* chore(tooling): retain compatible Node type surface

* ci: enforce formatting for docs-only changes

* ci: isolate docs formatter check

* chore(tooling): apply updated lint and format rules

* chore(tooling): satisfy updated switch lint

* style(ui): apply Linux formatter layout

* test(doctor): match quiet local audio contribution

* test(doctor): assert quiet output only

* test(doctor): follow restored information contract
This commit is contained in:
Peter Steinberger
2026-07-11 01:09:51 -07:00
committed by GitHub
parent 81ce206ee8
commit 7bf80dc2c6
217 changed files with 1464 additions and 1244 deletions

View File

@@ -362,7 +362,7 @@ function parsePnpmLockfileSections(lockfileText) {
let hasImportersSection = false;
let hasSnapshotsSection = false;
for (let index = 0; index < lines.length; ) {
for (let index = 0; index < lines.length;) {
const line = lines[index];
const trimmed = line.trim();
const indentation = countIndentation(line);