Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 958 Bytes

CONTRIBUTING.md

File metadata and controls

14 lines (10 loc) · 958 Bytes

Contributing to RxPHP

Thank you for taking the time to contribute. Here are some guidelines that you can follow:

Coding Rules

To ensure consistency throughout the source code and with other ReactiveX projects, please keep these rules in mind as you are working:

  • All features or bug fixes must be tested.
  • Test covervage should be equal to or greater than the RxJS v4 tests.
  • We follow the PSR2 coding style guide.
  • New operators should be composed with existing operators unless non-composed performance gains are demonstrable.
  • Examples for operators should be based upon the RxJS v4 operators.
  • When at all possible, operator definitions and behavior should mirror RxJS or RxJava.