From 4ecea804233b00df5b6a126cbe730cbd7eec1d43 Mon Sep 17 00:00:00 2001 From: Rohith Gilla Date: Fri, 18 Apr 2025 08:55:44 +0530 Subject: [PATCH] =?UTF-8?q?fix:=20standardize=20filename=20to=20kebab-case?= =?UTF-8?q?=20=F0=9F=90=8D=E2=9E=A1=EF=B8=8F=F0=9F=A5=99=20(#302)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Probably not the most exciting PR you’ll get today, but I noticed that every file in the repo follows kebab-case… except one brave little underscore in `cli_singlepass.tsx`. So I made the world a little more consistent. Just a filename rename — no logic changes, no semicolons harmed Didn’t touch any code, I promise. Just bringing order to the filesystem — one hyphen at a time. --- codex-cli/src/{cli_singlepass.tsx => cli-singlepass.tsx} | 0 codex-cli/src/cli.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename codex-cli/src/{cli_singlepass.tsx => cli-singlepass.tsx} (100%) diff --git a/codex-cli/src/cli_singlepass.tsx b/codex-cli/src/cli-singlepass.tsx similarity index 100% rename from codex-cli/src/cli_singlepass.tsx rename to codex-cli/src/cli-singlepass.tsx diff --git a/codex-cli/src/cli.tsx b/codex-cli/src/cli.tsx index 8149f65a..fdc0ea77 100644 --- a/codex-cli/src/cli.tsx +++ b/codex-cli/src/cli.tsx @@ -12,7 +12,7 @@ import type { AppConfig } from "./utils/config"; import type { ResponseItem } from "openai/resources/responses/responses"; import App from "./app"; -import { runSinglePass } from "./cli_singlepass"; +import { runSinglePass } from "./cli-singlepass"; import { AgentLoop } from "./utils/agent/agent-loop"; import { initLogger } from "./utils/agent/log"; import { ReviewDecision } from "./utils/agent/review";