👍🎉 First off, thanks for taking the time to contribute! 🎉👍
These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
If you intend to change the public API, or make any non-trivial changes to the implementation, we recommend filing an issue. This lets us reach an agreement on your proposal before you put significant effort into it.
If you’re only fixing a bug, it’s fine to submit a pull request right away but we still recommend to file an issue detailing what you’re fixing. This is helpful in case we don’t accept that specific fix but want to keep track of the issue.
Before creating a pull request please:
- Fork the repository and create your branch from
main
. - Install all dependencies (
dart pub get
). - Squash your commits and ensure you have a meaningful commit message.
- If you’ve fixed a bug or added code that should be tested, add tests! Pull Requests without 100% test coverage will not be approved.
- Ensure the test suite passes.
- If you've changed the public API, make sure to update/add documentation.
- Format your code (
dart format .
). - Analyze your code (
dart analyze . --fatal-infos
). - Create the Pull Request.
- Verify that all status checks are passing.
While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.
Every snapshot of a version is saved on its own yaml file under the name pattern: lib/analysis_options.<version>.yaml
.
- Run the
bump_version
script with the desired new version as an argument:
dart tool/bump_version/main.dart <version>
Where <version>
is the new version to be released in the format x.y.z
.
This script will:
- Copy the most recent yaml to a new one with the new desired version.
- Include that file on the main yaml file
lib/analysis_options.yaml
.
- Update the
README.md
exclusion table, refer to the "Exclusion Reason Table 🗞️👨⚖️" documentation for more information. - Open a pull request with the proposed changes.