Inhaltsverzeichnis

Contributing

Guide for contributions to the WvdS FPC RAD Suite.

Welcome

Thank you for your interest in contributing to the WvdS FPC RAD Suite! This document explains how you can submit contributions.

Prerequisites

Development Environment

Knowledge

Types of Contributions

Bug Reports

  1. Check if the bug has already been reported
  2. Create an issue with:
    • Description of the problem
    • Steps to reproduce
    • Expected vs. actual behavior
    • VS Code version, OS, extension version
    • Relevant log output (WVDS: Show Log)

Feature Requests

  1. Describe the desired feature
  2. Explain the use case
  3. Outline possible implementations

Code Contributions

  1. Fork the repository
  2. Create a feature branch
  3. Implement your change
  4. Test locally
  5. Create a pull request

Code Standards (Brief Overview)

Required

Prohibited

Pull Request Process

1. Preparation

# Fork and clone repository
git clone https://github.com/YOUR-USERNAME/WvdS.FPC.git
cd WvdS.FPC
 
# Create feature branch
git checkout -b feature/my-feature

2. Implementation

3. Pull Request

4. Review

Checklist Before Pull Request

[ ] Code compiles without errors
[ ] Extension works in testing
[ ] No TODO/FIXME comments
[ ] Public APIs documented
[ ] No hardcoded strings
[ ] No magic numbers
[ ] Tests passed (if applicable)
[ ] CHANGELOG.md updated (for new features)

Communication

License

By submitting contributions, you agree that your contributions will be released under the same license as the project.

For Technical Details

Complete developer guidelines can be found in the Developer Documentation:

Contact

See Also