Code Conventions
Python
- Use
rufffor linting - Use
tyfor type checking - Follow PEP 8 style guide
- Write docstrings for public APIs
TypeScript
- Use TypeScript strict mode
- Follow ESLint rules
- Use Prettier for formatting
Git
- Use Conventional Commits
- Keep commits atomic
- Write clear commit messages
Next Steps
- Read Development Setup
- View Testing Guide