From 2f1d96e77da217be23ec6fc283dcbf0f9401ac84 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 30 Apr 2025 11:37:11 -0700 Subject: [PATCH] fix: remove errant eslint-disable so `pnpm run lint` passes again (#756) My bad: introduced in https://github.com/openai/codex/pull/753. --- codex-cli/src/utils/session.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/codex-cli/src/utils/session.ts b/codex-cli/src/utils/session.ts index 0850c3db..19867220 100644 --- a/codex-cli/src/utils/session.ts +++ b/codex-cli/src/utils/session.ts @@ -1,7 +1,5 @@ // Node ESM supports JSON imports behind an assertion. TypeScript's // `resolveJsonModule` takes care of the typings. -// -// eslint-disable-next-line @typescript-eslint/consistent-type-imports import pkg from "../../package.json" assert { type: "json" }; // Read the version directly from package.json.