test: add test directory with sample files

This commit is contained in:
YeonGyu-Kim
2025-12-08 16:54:49 +09:00
parent 6ece7476ef
commit 9a9512b705
5 changed files with 15 additions and 0 deletions

4
test-dir/AGENTS.md Normal file
View File

@@ -0,0 +1,4 @@
## Root Level Rules
- Root rule 1
- Root rule 2

3
test-dir/another.ts Normal file
View File

@@ -0,0 +1,3 @@
export const config = {
strict: true
}

View File

@@ -0,0 +1,4 @@
## Nested Level Rules
- Nested rule 1 (더 specific)
- Nested rule 2

1
test-dir/nested/deep.ts Normal file
View File

@@ -0,0 +1 @@
export const deep = true

3
test-dir/test.ts Normal file
View File

@@ -0,0 +1,3 @@
export function greet(name: string): string {
return `Hello, ${name}!`
}