We want to make contributing to this project as easy and transparent as possible.
The code of conduct is described in CODE_OF_CONDUCT.md
We actively welcome your pull requests.
- Fork the repo and create your branch from
master
. - If you've added code that should be tested, add tests
- If you've changed APIs, update the documentation.
- Ensure the test suite passes.
- Make sure your code lints.
- If you haven't already, complete the Contributor License Agreement (CLA).
In order to accept your pull request, we need you to submit a CLA. You only need to do this once to work on any of Facebook's open source projects.
Complete your CLA here: https://code.facebook.com/cla
We will be using GitHub Issues for our public bugs. We will keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new task, try to make sure your problem doesn't already exist.
The best way to get your bug fixed is to provide a reduced test case. jsFiddle, jsBin, and other sites provide a way to give live examples. Those are especially helpful though may not work for JSX
-based code.
Facebook has a bounty program for the safe disclosure of security bugs. With that in mind, please do not file public issues; go through the process outlined on that page.
- Use semicolons
;
- Commas last
,
- 2 spaces for indentation (no tabs)
- Prefer
'
over"
'use strict';
- 80 character line length
- Write "attractive" code
- Do not use the optional parameters of
setTimeout
andsetInterval
- Do not wrap lines at 80 characters
By contributing to Flux, you agree that your contributions will be licensed under its BSD license.