From eee715218e64b2cee7f47811dafd07116964ec3c Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Thu, 4 Jun 2026 02:16:55 -0700 Subject: [PATCH] chore: lint cleanup, ignore generated i18n typings, mark plan completed --- .../2026-06-03-003-feat-workflow-custom-columns-traits-plan.md | 2 +- eslint.config.mjs | 2 ++ packages/engine/src/hold-release.ts | 1 - packages/engine/src/plugin-runner.ts | 1 - 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/plans/2026-06-03-003-feat-workflow-custom-columns-traits-plan.md b/docs/plans/2026-06-03-003-feat-workflow-custom-columns-traits-plan.md index 4587cf1825..1b93c91c66 100644 --- a/docs/plans/2026-06-03-003-feat-workflow-custom-columns-traits-plan.md +++ b/docs/plans/2026-06-03-003-feat-workflow-custom-columns-traits-plan.md @@ -1,7 +1,7 @@ --- title: "feat: Workflow-defined custom columns — engine as substrate, workflows as operating logic" type: feat -status: active +status: completed date: 2026-06-03 depth: deep origin: none (solo planning bootstrap) diff --git a/eslint.config.mjs b/eslint.config.mjs index e6de615985..2b706159d2 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -103,6 +103,8 @@ export default tseslint.config( // Vitest temporary workspace resolution directories ".tmp-fn-*/**", ".claude/**", + // Generated i18n resource typings (emitted by i18n:types) + "packages/i18n/src/resources.d.ts", // Lock files "*.lock", "pnpm-lock.yaml", diff --git a/packages/engine/src/hold-release.ts b/packages/engine/src/hold-release.ts index 46b9cad8c5..9fddb34227 100644 --- a/packages/engine/src/hold-release.ts +++ b/packages/engine/src/hold-release.ts @@ -48,7 +48,6 @@ import { parseWorkflowIr, type TaskStore, type Task, - type Settings, type WorkflowIr, type WorkflowIrV2, type WorkflowIrColumn, diff --git a/packages/engine/src/plugin-runner.ts b/packages/engine/src/plugin-runner.ts index 4e2f82926e..cad8ceb27e 100644 --- a/packages/engine/src/plugin-runner.ts +++ b/packages/engine/src/plugin-runner.ts @@ -23,7 +23,6 @@ import type { PluginWorkflowStepContribution, PluginTraitContribution, WorkflowIr, - TaskDetail, PluginPromptContribution, PluginPromptContributions, PluginPromptSurface,