When contributing to Ladybird, make sure that the changes you wish to make are in line with the project direction. If you are not sure about this, open an issue first, so we can discuss it.
For your first couple of PRs, start with something small to get familiar with the project and its development processes. Please do not start by adding a large component.
Read the Ladybird documentation, including the documents in the Development section of the Documentation/README.md
file.
Everyone is welcome to work on the project, and while we have lots of fun, it's a serious kind of fun. :^)
Join our Discord server to participate in development discussion.
Please file any bugs you find, keeping the following in mind:
#build-problems
channel on Discord.The Ladybird project is driven by the Ladybird Browser Initiative, a 501(c)(3) non-profit organization.
Pull requests are approved and merged by a group of maintainers. The current group of maintainers are (in alphabetical order):
In Ladybird, we treat human language as seriously as we do programming language.
The following applies to all user-facing strings, code, comments, and commit messages:
Note that this also applies to debug logging and other internal strings, as they may be exposed to users in the future.
When possible, please include tests when fixing bugs or adding new features.
If changes you’re making have relevant Web Platform Tests (WPT) tests — especially if the changes cause Ladybird to pass any WPT tests it hadn’t yet been passing — you should consider importing those tests into your Ladybird clone, and then commit the imported tests along with your code changes.
Nobody is perfect, and sometimes we mess things up. That said, here are some good do's & don'ts to try and stick to:
Do:
AK
containers in all code.clang-format
(version 19) to automatically format C++ files. See AdvancedBuildInstructions.md for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-19.LibMedia
, WebContent
, CI
, AK
, RequestServer
, js
Libraries
" or "Utilities
", except for generic changes that affect a large portion of code within these directories.LibGUI: Brief description of what's being changed in FooWidget
rather than FooWidget: Brief description of what's being changed
+
, e.g. LibJS+LibWeb+Browser: ...
optipng -strip all
on them to optimize and strip away useless metadata - this can reduce file size from multiple kilobytes to a couple hundred bytes.Don't:
Usage of AI assistance is usually fine, but you are responsible for making sure the quality of the output is up to the standards of the project. Currently, AI-generated output is often too verbose and its quality is subpar compared to what most human contributors produce.
Do not use an AI or LLM to generate changes, respond to issues or interact with PRs without holding the output to the same standards as human-written content.
While unadvertised PRs may get randomly merged by curious maintainers, you will have a much smoother time if you engage with the community on Discord.
Ping them right away if it's something urgent! If it's less urgent, advertise your PR on Discord (#code-review
) and ask if someone could review it.
Yes, we have a "stalebot" that will mark untouched PRs as "stale" after 21 days, and close them after another 7 days if nothing happens.
In theory, the best person to speak with is whoever wrote most code adjacent to what you're working on. In practice, asking in one of the development channels on Discord is usually easier/better, since that allows many people to join the discussion.
It's definitely better to ask on Discord. Due to the volume of GitHub notifications, many of us turn them off and rely on Discord for learning about review requests.
The repository contains a file called .pre-commit-config.yaml
that defines several 'commit hooks' that can be run automatically just before and after creating a new commit. These hooks lint your commit message, and the changes it contains to ensure they will pass the automated CI for pull requests.
To enable these hooks firstly follow the installation instructions available at https://pre-commit.com/#install and then enable one or both of the following hooks:
pre-commit hook - Runs Meta/lint-ci.sh and Meta/lint-ports.py to ensure changes to the code will pass linting:
pre-commit install
post-commit hook - Lints the commit message to ensure it will pass the commit linting:
pre-commit install --hook-type commit-msg
The GitHub project contains git notes for each commit that includes e.g. a link to
the pull request from which the commit originated and reviewer information. These are updated automatically, but require
an additional step locally to be able to see the notes in git log
:
git config --add remote.upstream.fetch '+refs/notes/*:refs/notes/*'
[!NOTE] The
upstream
remote in this command should be replaced with whatever you've named the LadybirdBrowser/ladybird.git remote in your local clone. Usegit remote -v
to find that name.
Now, any time you git fetch
, the latest notes will be fetched as well. You will see information like the following when
you run git log
:
commit c1b0e180ba64d2ea7e815e2c2e93087ae9a26500
Author: Timothy Flynn <trflynn89@pm.me>
Date: Mon Jul 29 10:18:25 2024 -0400
LibWebView: Insert line numbers before each line in about:srcdoc
The behavior chosen here (fixed-width counters, alignment, etc.) matches
Firefox.
Notes:
Author: https://github.com/trflynn89
Commit: https://github.com/LadybirdBrowser/ladybird/commit/c1b0e180ba6
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/892
Reviewed-by: https://github.com/AtkinsSJ ✅
Sometimes good PRs get abandoned by the author for one reason or another. If the PR is fundamentally good, but the author is not responding to requests, the PR may be manually integrated with minor changes to code and commit messages.
To make this easier, we do appreciate it if folks enable the "Allow edits from maintainers" flag on their pull requests.
Our goal is to build a browser for everyone, irrespective of their specific opinions and worldviews. To achieve this, we strive to set our differences aside and focus on the shared goal of building the browser.
This means:
We encourage everyone to share their personal views and opinions outside project spaces. However, please keep project spaces focused on project goals.
We reserve the right to reject issues and pull requests that appear to be motivated by bad faith.
Additionally, anyone found participating in social media brigading of Ladybird will be permanently banned from the project.