Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Documentation / Contributing


Contributing

Contributions welcome! This section covers development setup and guidelines.

In This Section

Quick Start for Contributors

  1. Fork the repository
  2. Clone your fork
  3. Build the project:
    cargo build --release
  4. Run tests:
    cargo test

Development Commands

# Build the project
cargo build --release

# Run tests
cargo test

# Build and run in development mode
cargo run -- <command>

Guidelines

See CONTRIBUTING.md in the root for detailed contribution guidelines.

Adding Language Support

When adding new language support:

  1. Implement the parser trait
  2. Add language-specific resolution if needed
  3. Include comprehensive tests
  4. Update documentation

Next Steps

Back to Documentation