@incidental/project-templates
Version:
Claude Code template library for JavaScript projects with framework auto-detection
67 lines (43 loc) • 1.15 kB
Markdown
Project Structure - [Project Name]
# File Organization
```
project-root/
├── [Describe your directory structure here]
└── README.md
```
# Naming Conventions
## Files and Directories
- [Describe file naming conventions]
## Code Conventions
- **Variables**: [Convention]
- **Functions**: [Convention]
- **Classes**: [Convention]
- **Constants**: [Convention]
# Directory Purposes
## `/src`
[What goes in src directory]
## `/components`
[Component organization]
## `/lib` or `/utils`
[Utility function organization]
# Code Organization Patterns
## Module Structure
[How should modules be structured?]
## Import Order
[What order should imports follow?]
# Development Workflow
## Adding New Features
[Steps for adding new features]
## Making Changes
[Process for making changes]
# Coding Standards
## Linting
[ESLint configuration and rules]
## Formatting
[Prettier or other formatting standards]
## Type Safety
[TypeScript usage guidelines]
# Documentation Standards
[How should code be documented?]
---
*This is a template. Replace all bracketed sections with your project-specific information.*