Skip to content

Commit 7f9ea74

Browse files
committed
don't lint .claude dir
1 parent bf477a6 commit 7f9ea74

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.prettierignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ bun.lockb
88
# Miscellaneous
99
/static/
1010
/drizzle/
11-
/**/.svelte-kit/*
11+
/**/.svelte-kit/*
12+
13+
# Claude Code
14+
.claude/

eslint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ const gitignore_path = fileURLToPath(new URL('./.gitignore', import.meta.url));
1212

1313
export default /** @type {import("eslint").Linter.Config} */ ([
1414
includeIgnoreFile(gitignore_path),
15+
{
16+
ignores: ['.claude/**/*'],
17+
},
1518
js.configs.recommended,
1619
...ts.configs.recommended,
1720
...svelte.configs.recommended,

0 commit comments

Comments
 (0)