Skip to content

Commit 9a9512b

Browse files
committed
test: add test directory with sample files
1 parent 6ece747 commit 9a9512b

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

test-dir/AGENTS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Root Level Rules
2+
3+
- Root rule 1
4+
- Root rule 2

test-dir/another.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export const config = {
2+
strict: true
3+
}

test-dir/nested/AGENTS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Nested Level Rules
2+
3+
- Nested rule 1 (더 specific)
4+
- Nested rule 2

test-dir/nested/deep.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const deep = true

test-dir/test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export function greet(name: string): string {
2+
return `Hello, ${name}!`
3+
}

0 commit comments

Comments
 (0)