Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.89 KB

CONTRIBUTING.md

File metadata and controls

44 lines (28 loc) · 1.89 KB

Contributing to the Amplitude SDK for Flutter

🎉 Thanks for your interest in contributing! 🎉

Ramping Up

Prerequisites

Make sure you have Flutter itself installed and the tools necessary for your desired platforms.

You can checkout the the official Flutter documentation on getting started for help.

Setting Up and Running Examples

Clone the repo

git clone https://github.com/amplitude/Amplitude-Flutter

Try running the example Flutter Project

Checkout the set up and editor and test drive sections of the official Flutter documentation on setting up your environment.

You should then be able to run the Flutter project in example/ which has the Amplitude Flutter SDK installed.

Practices

PR Commit Title Conventions

PR titles should follow conventional commit standards. This helps automate the release process.

Commit Types

  • Special Case: Any commit with BREAKING CHANGES in the body: Creates major release
  • feat(<optional scope>): New features (minimum minor release)
  • fix(<optional scope>): Bug fixes (minimum patch release)
  • perf(<optional scope>): Performance improvement
  • docs(<optional scope>): Documentation updates
  • test(<optional scope>): Test updates
  • refactor(<optional scope>): Code change that neither fixes a bug nor adds a feature
  • style(<optional scope>): Code style changes (e.g. formatting, commas, semi-colons)
  • build(<optional scope>): Changes that affect the build system or external dependencies (e.g. Yarn, Npm)
  • ci(<optional scope>): Changes to our CI configuration files and scripts
  • chore(<optional scope>): Other changes that don't modify src or test files
  • revert(<optional scope>): Revert commit