- Added .cursor/sessions/* to .gitignore to prevent session files from being tracked. - Enhanced coding standards in SKILL.md by adding semicolons to TypeScript examples for consistency. - Improved formatting in continuous learning, detail layout, and other SKILL.md files for better readability. These changes aim to streamline development processes and maintain code quality across the project.
54 lines
711 B
Plaintext
54 lines
711 B
Plaintext
# OS & Editor
|
|
.DS_Store
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
|
|
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
.cursor/sessions/*
|
|
|
|
# Turborepo & Cache
|
|
.turbo
|
|
.cache
|
|
|
|
# Environment Variables (Security)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.local
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Standard Web Build Outputs
|
|
dist
|
|
dist-ssr
|
|
server/dist
|
|
public/dist
|
|
|
|
# Auto-generated brand assets (copied from @repo/brand)
|
|
**/public/brand/
|
|
|
|
# Storybook Build Outputs
|
|
*storybook.log
|
|
storybook-static
|
|
|
|
# Electron Build Outputs
|
|
out/
|
|
release/
|
|
web-dist/
|
|
|
|
# Legacy Code (if applicable)
|
|
legacy/
|
|
|
|
# VitePress
|
|
**/.vitepress/cache/
|
|
**/.vitepress/dist/ |