File size: 1,716 Bytes
7316b09 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# Contributing to ML Pipeline for Cybersecurity Purple Teaming
First off, thank you for considering contributing to our project! π
## Code of Conduct
This project and everyone participating in it is governed by our [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
## How Can I Contribute?
### Reporting Bugs π
- Use the GitHub issue tracker
- Check if the bug has already been reported
- Include detailed steps to reproduce the bug
- Provide system information and stack traces if applicable
### Suggesting Enhancements π‘
- First, read the documentation to make sure the functionality doesn't already exist
- Use the GitHub issue tracker and clearly describe the feature
- Explain why this enhancement would be useful
- Keep the scope as narrow as possible
### Pull Requests π§
1. Fork the repo and create your branch from `main`
2. If you've added code that should be tested, add tests
3. Ensure the test suite passes
4. Make sure your code lints
5. Issue that pull request!
## Development Process
1. **Setup Development Environment**
```bash
pip install -r requirements-dev.txt
```
2. **Run Tests**
```bash
pytest
```
3. **Code Style**
- Follow PEP 8 guidelines
- Use meaningful variable names
- Add comments for complex logic
- Write docstrings for functions and classes
4. **Commit Messages**
- Use clear, descriptive commit messages
- Reference issues and pull requests
- Keep commits atomic and focused
## Documentation π
- Update README.md with details of changes to the interface
- Update docstrings and comments
- Add any new installation requirements
Thank you for your contribution! π
|