Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.22 KB

File metadata and controls

43 lines (31 loc) · 1.22 KB

Contributing to MetaSearch

Thank you for your interest in contributing to MetaSearch! This guide will help you get started with contributing to the project.

Development Environment Setup

  1. Install Node.js (LTS version recommended)
  2. Clone the repository
  3. Install dependencies with npm install
  4. Use npx @rspack/cli build for testing builds
  5. Use npm run package for production builds

Development Process

  1. Check the Issues tab for existing tasks, or create a new issue if needed
  2. Fork the repository
  3. Implement your changes
  4. Submit a pull request and link it to the related issue

Coding Standards

Code Style

  • Use ESLint and Prettier for code formatting
  • Follow existing code style patterns
  • Use meaningful variable and function names
  • Keep functions small and focused

Commit Messages

  • Use conventional commits format
  • Structure: type(scope): description
  • Types: feat, fix, docs, style, refactor, test, chore
  • Keep messages clear and concise
  • Reference related issues when applicable

Questions?

If you need help or have questions:

  1. Check existing issues
  2. Review documentation in /docs
  3. Create a new issue with detailed information

Thank you for helping make MetaSearch better!