Thanks for your interest in contributing to claudio_sdk.
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/claudio.git - Create a branch:
git checkout -b feat/your-feature - Install dependencies:
dart pub get
# Run tests
dart test
# Run static analysis
dart analyze .
# Format code
dart format .
# Generate docs
dart doc .feat:— new featurefix:— bug fixrefactor:— code restructuringchore:— maintenance, deps, configdocs:— documentationtest:— test changesstyle:— formatting
- Tests pass:
dart test - Analysis clean:
dart analyze . - Code formatted:
dart format . - Updated CHANGELOG.md if applicable
- PR targets the
devbranch
This project follows Dart recommended lints with strict mode. See analysis_options.yaml.
By contributing, you agree that your contributions will be licensed under the MIT License.