Thank you for your interest in AEI Framework! Community contributions are essential to move the project forward.
- Fork the repository and create a branch for your feature.
- Ensure the code is formatted, linted, and tested.
- Submit a pull request describing the proposed change.
This project follows the Conventional Commits specification.
Examples:
feat: add network modulefix: correct propagation
- Format Rust code with
cargo fmt. - Run static analysis with
cargo clippy -- -D warnings. - Tests must pass via
cargo test.
Every new feature should include unit or integration tests. Run the full suite before submitting your PR:
cargo fmt
cargo clippy -- -D warnings
cargo testThank you for contributing!