We love your input! We want to make contributing to Tagflow as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.
We Use Github Flow
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests:
- Fork the repo and create your branch from
main
. - 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 follows the existing style.
- Issue that pull request!
- Follow the Dart Style Guide
- Use the provided analysis_options.yaml
- Run
dart format
before committing - Ensure there are no analyzer warnings
When adding support for HTML elements and attributes:
- Follow standard HTML specifications
- Implement attributes according to their standard behavior
- Example: table
border
attribute affects outer border width and adds 1px borders to cells
- Example: table
- Document any deviations from standard HTML behavior
- Add appropriate test cases
- Keep core functionality in the
tagflow
package - Place specialized widgets in their respective packages (e.g.,
tagflow_table
) - Maintain backward compatibility when possible
By contributing, you agree that your contributions will be licensed under its MIT License.