Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 3.32 KB

CONTRIBUTING.md

File metadata and controls

52 lines (34 loc) · 3.32 KB

Contributor Guide

Contributions to Fluky, whether new features or bug fixes, are welcome and are greatly appreciated.

Your contributions must be your own work and licensed under the same terms as Fluky project

Process

  • File an issue. Either suggest a feature or note a defect. If it's a new feature, explain the motivation behind it and how you think it should work. If it's a defect, include a description and reproduction (ideally one or more failing unit tests).
  • Design discussion. For new features, some discussion on the issue will take place to determine if it's something that should be included with Fluky. For defects, discussion may happen around whether the issue is truly a defect or if the behavior is correct.
  • Implementation. Fork the repository. For feature development, create a feature branch (feature-something) and implement the change. For small defects, it's ok to make the change directly on the develop branch. Large bug fixes should be implemented on a defect branch (xyz-something, where xyz is the issue number).
  • Pull request. Create a pull request on the develop branch of the repository to submit changes. Pull requests need to pass the CI build and follow coding standards. All pull requests should include accompanying unit tests to verify the work.
  • Code review. Some iteration may take place requiring updates to the pull request.
  • Pull request acceptance. The pull request will be accepted into the develop branch and pushed to master with the next release.

License

By contributing to Fluky, you assert that:

  1. The contribution is your own original work.
  2. You have the right to assign the copyright for the work (it is not owned by your employer, or you have been given copyright assignment in writing).
  3. You license it under the terms applied to the rest of the Fluky project.

Development Guidelines

Development Environment

Dependencies

Fluky core assemblies depend only on the .NET Standard. It should be possible to build the project straight out of Git (no additional installation needs to take place on the developer's machine). This means NuGet package references (which should be restored during the build process).

Integration and extension projects may have additional dependencies, consistent with the nature of the project.

Unit tests are written in xUnit and Moq.

Coding Standards

  • Fluky uses standard Microsoft .NET coding guidelines. See the Framework Design Guidelines for suggestions.
  • Use four spaces for code indentation (no tabs).
  • For private fields, use a camelCase notation, prefixing field names with an underscore.
  • Generally, use comment-free coding approach, where code is self-explanatory. Comments may be added for complex areas of code, and should explain "why" not "how".
  • Maintain clean code - no commented out sections, no dangling or inconsistent line breaks, ensure consistent indentation and bracing.
  • Treat compiler warnings as errors.
  • If you have ReSharper, make sure to address all warnings and errors that it produces.
  • Be cognizant of performance-critical code.

Documentation

Public types and members must have XML documentation.