@@ -84,21 +84,21 @@ vitnode/
8484│ └── docs/ # Documentation site
8585├── packages/
8686│ ├── vitnode/ # Core framework code
87- │ ├── config/ # Shared Biome, TypeScript configs
87+ │ ├── config/ # Shared ESLInt, TypeScript configs
8888│ └── create-vitnode-app/ # CLI tool for creating new projects
8989└── plugins/ # Official open-source plugins
9090```
9191
9292<Callout type = " info" title = " Monorepo Magic!" >
93- VitNode uses Turborepo to keep everything organized. Apps, packages, and plugins all live together
94- in harmony!
93+ VitNode uses Turborepo to keep everything organized. Apps, packages, and
94+ plugins all live together in harmony!
9595</Callout >
9696
9797## Coding Standards
9898
9999- We use TypeScript for type safety ([ TypeScript Docs] ( https://www.typescriptlang.org/ ) )
100100- Follow ESM (ECMAScript Modules) conventions ([ ESM Guide] ( https://nodejs.org/api/esm.html ) )
101- - Respect the Biome configuration in each workspace ([ Biome ] ( https://biomejs.dev / ) )
101+ - Respect the ESLint & Prettier configuration in each workspace ([ ESLint ] ( https://eslint.org/ ) & [ Prettier ] ( https://prettier.io /) )
102102- Use React Server Components where appropriate
103103- Write meaningful commit messages ([ Conventional Commits] ( https://www.conventionalcommits.org/ ) )
104104
@@ -137,7 +137,7 @@ pnpm db:migrate # Run migrations
137137 - TypeScript for type safety
138138 - ESM module conventions
139139 - React Server Components where appropriate
140- - Respect Biome rules in each workspace
140+ - Respect ESLint, Prettier rules in each workspace
141141
142142 <Callout type = " warn" >
143143 Don't forget to test your changes locally! 🧪
@@ -190,4 +190,6 @@ pnpm db:migrate # Run migrations
190190
191191Thank you for contributing to VitNode! 🚀
192192
193- <Callout title = " You rock!" >Every contribution makes VitNode better. We appreciate you! 💜</Callout >
193+ <Callout title = " You rock!" >
194+ Every contribution makes VitNode better. We appreciate you! 💜
195+ </Callout >
0 commit comments