3.2 KiB
Contributing to Ant Design
The following is a set of guidelines for contributing to Ant Design. Please spend several minutes in reading these guidelines before you create an issue or pull request.
Anyway, these are just guidelines, not rules, use your best judgment and feel free to propose changes to this document in a pull request.
Do your homework before asking a question
It's a great idea to read Eric Steven Raymond's How To Ask Questions The Smart Way twice before asking a question. But if you are busy now, I recommend to read Don't post homework questions first.
The following guidelines are about How to avoid Homework Questions.
1. Read the documentation.
It sad but true that someone just glance(not read) Ant Design's documentation. Please read the documentation closely. What's more, you can modify and run our demo with CodePen. It's helpful to understand our documentation.
Tips: choose the corresponding documentation with versions selector which in the bottom-right corner.
2. Make sure that your question is about Ant Design, not React
Someone may think all of the questions that he/she meets in developing are about Ant Design, but it's not true. So, please read React's documentaion or just Google(not Baidu, seriously) your questions with keywork React first. If you are sure that your question is about Ant Design, go ahead.
3. Read the FAQ and search the issues list of Ant Design
Your questions may be asked and solved by others. So please spend several minutes on searching. Remember DRY, both code and questions.
P.S.
Close your issue if it's solved
It is a good habit which will save maintainers' time. Thank you!
Providing a demo while reporting a bug
It would be helpful to provide a demo which can re-produce the bug 100%. Please fork this CodePen and re-produce the bug you met. Then, create an issue. The most important thing is: double check before claiming that you have found a bug.
Tips about Feature Request
If you believe that Ant Design should provide some features, but it does not. You could create an issue to discuss. However, Ant Design is not Swiss Army Knife, there are some features which Ant Design will not support:
- Request or operate data
Tips about Pull Request
It's welcomed to pull request. And there are some tips about that:
- It is a good habit to create a feature request issue to disscuss whether the feature is necessary before you implement it. However, it's unnecessary to create an issue to claim that you found a typo or improved the readability of documentaion, just create a pull request.
- Run
npm run lint
and fix those errors before committing in order to keep consistent code style. - Rebase before creating a PR to keep commit history clear.
- Add some descriptions and refer relative issues for you PR.