From 9a9512b705a00aa0b8dba6b2011b3600c1cdf072 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 8 Dec 2025 16:54:49 +0900 Subject: [PATCH] test: add test directory with sample files --- test-dir/AGENTS.md | 4 ++++ test-dir/another.ts | 3 +++ test-dir/nested/AGENTS.md | 4 ++++ test-dir/nested/deep.ts | 1 + test-dir/test.ts | 3 +++ 5 files changed, 15 insertions(+) create mode 100644 test-dir/AGENTS.md create mode 100644 test-dir/another.ts create mode 100644 test-dir/nested/AGENTS.md create mode 100644 test-dir/nested/deep.ts create mode 100644 test-dir/test.ts diff --git a/test-dir/AGENTS.md b/test-dir/AGENTS.md new file mode 100644 index 0000000..0da143c --- /dev/null +++ b/test-dir/AGENTS.md @@ -0,0 +1,4 @@ +## Root Level Rules + +- Root rule 1 +- Root rule 2 diff --git a/test-dir/another.ts b/test-dir/another.ts new file mode 100644 index 0000000..0ee1484 --- /dev/null +++ b/test-dir/another.ts @@ -0,0 +1,3 @@ +export const config = { + strict: true +} diff --git a/test-dir/nested/AGENTS.md b/test-dir/nested/AGENTS.md new file mode 100644 index 0000000..3b060ac --- /dev/null +++ b/test-dir/nested/AGENTS.md @@ -0,0 +1,4 @@ +## Nested Level Rules + +- Nested rule 1 (더 specific) +- Nested rule 2 diff --git a/test-dir/nested/deep.ts b/test-dir/nested/deep.ts new file mode 100644 index 0000000..83ad71d --- /dev/null +++ b/test-dir/nested/deep.ts @@ -0,0 +1 @@ +export const deep = true diff --git a/test-dir/test.ts b/test-dir/test.ts new file mode 100644 index 0000000..d50420c --- /dev/null +++ b/test-dir/test.ts @@ -0,0 +1,3 @@ +export function greet(name: string): string { + return `Hello, ${name}!` +}