Skip to content

Commit 9593e45

Browse files
doodlewindclaude
andcommitted
fix(ci): exclude .claude/ from root eslint (Workflow scripts use runtime globals)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8496fa6 commit 9593e45

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

eslint.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import js from '@eslint/js';
44

55
export default [
66
{
7-
// playground/ is a standalone Vite app and apps/ is the TypedTranslate macOS
8-
// app (bun bridge scripts) — both have their own tsconfig/runtime and are not
9-
// part of this package's lint/compile project.
10-
ignores: ['node_modules/**', 'dist/**', 'playground/**', 'apps/**']
7+
// playground/ is a standalone Vite app with its own tsconfig/runtime, and
8+
// .claude/workflows/ holds Workflow-tool scripts (their own runtime globals)
9+
// — neither is part of this package's lint/compile project.
10+
ignores: ['node_modules/**', 'dist/**', 'playground/**', 'apps/**', '.claude/**']
1111
},
1212
js.configs.recommended,
1313
{

0 commit comments

Comments
 (0)