Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 2.1 KB

File metadata and controls

51 lines (38 loc) · 2.1 KB

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Pull Request Guidelines

Pull Request Titles

Pull request titles must follow the Conventional Commits standard. This helps us generate accurate changelogs and maintain a clear project history.

Format: <type>(<scope>): <description>

Examples:

  • feat(react-icons): add new calendar icon variants
  • fix(svg-sprites): correct sprite generation for RTL icons
  • docs: update installation instructions
  • chore(deps): update dependencies
  • feat(assets): add new icons

Common types:

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation changes
  • chore: Maintenance tasks (dependencies, build scripts)
  • refactor: Code refactoring without changing functionality
  • test: Adding or updating tests
  • ci: Changes to CI/CD configuration

Scope (optional but recommended):

  • react-icons: Changes to @fluentui/react-icons
  • react-native-icons: Changes to @fluentui/react-native-icons
  • svg-icons: Changes to @fluentui/svg-icons
  • svg-sprites: Changes to @fluentui/svg-sprites
  • webpack-plugin: Changes to webpack plugin
  • assets: Changes to icon assets
  • android: Android-specific changes
  • ios: iOS-specific changes