chore: fix remaining lint error in tests

This commit is contained in:
Keith Guerin
2026-03-01 13:12:14 -08:00
parent 043a08807b
commit db724097b0
113 changed files with 1457 additions and 1577 deletions
+2 -2
View File
@@ -95,10 +95,10 @@ export function loadSettings(workspaceDir: string): Settings {
// Load workspace settings
try {
if (fs.existsSync(workspaceSettingsPath)) {
const projectContent = fs.readFileSync(workspaceSettingsPath, 'utf-8');
const workspaceContent = fs.readFileSync(workspaceSettingsPath, 'utf-8');
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
const parsedWorkspaceSettings = JSON.parse(
stripJsonComments(projectContent),
stripJsonComments(workspaceContent),
) as Settings;
workspaceSettings = resolveEnvVarsInObject(parsedWorkspaceSettings);
}