Skip to content

Commit 62c40ba

Browse files
committed
style: format AI config files with Prettier
1 parent 1be41c2 commit 62c40ba

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.cursorrules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ useEffect(function syncBrowserState() {
4343
## File Structure
4444

4545
Each hook in own folder: `src/hooks/useHookName/`
46+
4647
- `index.ts`, `useHookName.ts`, `useHookName.spec.ts`, `useHookName.ssr.test.ts`
4748
- Docs: `useHookName.md` + `ko/useHookName.md`
4849

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Never call browser APIs during state initialization.
5050

5151
Every public API requires:
5252

53-
```ts
53+
````ts
5454
/**
5555
* @description Brief description of what it does
5656
* @param paramName - Parameter description
@@ -60,7 +60,7 @@ Every public API requires:
6060
* const value = useHookName(param);
6161
* ```
6262
*/
63-
```
63+
````
6464

6565
## File Structure
6666

AGENTS.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
## Project Overview
77

88
React utility hooks/components library. Monorepo with two packages:
9+
910
- `react-simplikit` (`packages/core`) — Platform-independent React hooks & components
1011
- `@react-simplikit/mobile` (`packages/mobile`) — Mobile web utilities (viewport, keyboard, layout)
1112

@@ -17,9 +18,9 @@ Layer dependency is **unidirectional** — no upward or circular imports:
1718
components → hooks → utils → _internal
1819
```
1920

20-
- Components may use hooks, utils, _internal
21-
- Hooks may use utils, _internal
22-
- Utils may use _internal only
21+
- Components may use hooks, utils, \_internal
22+
- Hooks may use utils, \_internal
23+
- Utils may use \_internal only
2324
- Mobile may depend on core; core must NOT depend on mobile
2425

2526
## File Structure

0 commit comments

Comments
 (0)