Contributing
CKEditor 5 is an Open Source project and we will be most thankful for your contributions. You can help us by fixing issues, reporting them, or translating the editor interface. Community effort and engagement is what has been driving the development of our WYSIWYG editor projects since 2003!
# Fixing issues and coding features
Before you start, here are some things to keep in mind:
- We expect contributions to follow the high-quality code standards that we follow, including coding style and tests. Lack of attention to this point may either make it slow to adopt a contribution or even force us to reject it altogether.
- There is no guarantee that your contribution will be incorporated into the project code. Still, pull requests make it easy for you to keep them for your own use or for others who may be interested in them.
- If you plan to start working on a bigger task, it might be worth asking the core team (beforehand) whether a specific feature or a solution to an issue will be accepted.
- If you need any assistance when creating a patch or implementing a feature, ping us under the ticket.
- Having a CLA is essential to have your contributions accepted.
# Setting up the development environment
To learn how to set up the project and run tests see the development environment guide.
# Code style
Read more in the code style guide, where you can also check the naming and file name guidelines.
Every package repository installs Git hooks that automatically lint and check the code for code style on commit. However, not every code style issue can be discovered this way, so please do not rely on tools too much.
# Tests
We maintain a 100% code coverage (including code branches) and pull requests with missing tests will not be accepted. However, keep in mind that 100% is not everything – every change must be tested. This means that if you are fixing a bug and your patch did not change the code coverage, the change itself needs a test anyway.
Besides automated tests, you may be asked to create a manual test for the issue. Such manual tests let us quickly validate that the issue was really fixed and are later used during the testing phase (before a release) to make sure no regressions were created.
Read more about our testing environment.
# Creating a pull request
GitHub provides an excellent documentation about pull requests. If you are not sure what to do, this is the right place to start.
The Angular, React and Vue integrations as well as CKEditor 5 inspector and development tools packages are kept in separate repositories. The steps below assume that you want to propose a change in the main CKEditor 5 repository.
Assuming that you would like to propose some changes, these are the steps you should take to create a pull request:
-
Make sure to open a ticket in https://github.com/ckeditor/ckeditor5 describing the issue, feature or problem that you want to solve in your pull request. This can be skipped in case of obvious and trivial changes (typos, documentation, etc.).
-
Make sure your development environment is ready.
-
Go to GitHub and fork the repository. The forked repository will appear in your GitHub account as
https://github.com/YOUR-USERNAME/ckeditor5
. -
Open your terminal, then go to the package (“repository”) folder in your development environment:
$ cd path/to/ckeditor5
-
Start a new branch for your code. We use the
i/GITHUB-ISSUE-NUMBER
convention for branch names:$ git checkout -b i/GITHUB-ISSUE-NUMBER
-
Make the changes. Stick to the code-style guidelines and remember about tests and 100% code coverage!
-
Commit your changes:
$ git commit -m "Squashed a nasty bug in the link editing."
-
Now it is time to make your changes public. First, you need to let
git
know about the fork you created by adding the remote:$ git remote add my-fork https://github.com/YOUR-USERNAME/ckeditor5
-
Push your changes to your forked repository:
$ git push my-fork i/GITHUB-ISSUE-NUMBER
-
Go to your forked repository on GitHub. Use the pull request button and follow the instructions. Make sure to include a merge commit message text matches the convention
-
Let us know about your pull request! The best way is to comment under the original issue.
Some additional things you should keep in mind:
- Your pull request should be minimal. It should change only things described in the ticket. Do not squeeze unrelated changes into your pull request.
- When making a pull request on GitHub, make sure to specify which ticket(s) your pull request resolves. It is also recommended to provide more information, like how to test the patch, issues that you encountered, decisions you had to make, known problems, etc.
- Make sure you signed the Contributor License Agreement (CLA) and that tests pass. Test your changes!
# Translating
CKEditor 5 is a project with global impact, so contributing translations is both an easy and powerful way to help.
To make CKEditor 5 available in multiple languages, we use .po
files for storing translations. These are text files commonly used in software development to translate interface texts. Each CKEditor 5 package keeps translation files in the lang/translations
directory. To provide missing translations, just edit the .po
file and prepare a pull request.
Here as well, having a CLA in place is a requirement to become an official translator (see below).
# Reporting issues and requesting features
Read the reporting issues guide to learn more.
# Contributor License Agreement (CLA)
To accept contributions sent to us in the form of code, documentation, or translations, a Contributor License Agreement (CLA) must be in place to clarify the intellectual property license granted with them. This license is for your protection as a contributor as well as the protection of us and our users; it does not change your rights to use your own contributions for any other purpose.
To sign the CLA and to get more information, follow this link: https://cla.ckeditor.com/.
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.
With the release of version 42.0.0, we have rewritten much of our documentation to reflect the new import paths and features. We appreciate your feedback to help us ensure its accuracy and completeness.