Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 984 Bytes

File metadata and controls

25 lines (19 loc) · 984 Bytes

Contributing to Modern Angular

Thank you for your interest in contributing! This repo is the source code for the Modern Angular free course.

How to Contribute

Reporting Issues

  • Use the GitHub Issues tab
  • Describe the problem clearly, including Angular version and steps to reproduce

Submitting Pull Requests

  1. Fork the repository
  2. Create a feature branch: git checkout -b fix/your-fix-name
  3. Make your changes following the existing code style
  4. Commit with a clear message: git commit -m "fix: describe your fix"
  5. Push and open a Pull Request against main

Code Style

  • Follow the Angular Style Guide
  • Use standalone components (no NgModules)
  • Prefer signals over RxJS where applicable
  • Use built-in control flow (@if, @for, @switch)

License

By contributing, you agree that your contributions will be licensed under the MIT License.