Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 875 Bytes

File metadata and controls

30 lines (19 loc) · 875 Bytes

Contributing to AI Malware Detector

Thank you for considering contributing! This document outlines the guidelines.

Getting Started

  1. Fork the repository and clone your fork.
  2. Install dependencies: pip install -r requirements.txt.
  3. Create a feature branch: git checkout -b feature/your-feature.

Development Guidelines

  • Follow PEP 8 style conventions.
  • Write tests for new features in the tests/ directory.
  • Run existing tests: python -m pytest tests/ -v.
  • Update README.md if adding user-facing functionality.

Commit Messages

Use conventional commits: feat:, fix:, docs:, chore:, refactor:, test:.

Pull Requests

  • Keep PRs focused on a single concern.
  • Reference any related issues in the description.
  • Ensure all CI checks pass before requesting review.

Code of Conduct

Be respectful, inclusive, and constructive.