syntaxis/CONTRIBUTING.md
Jesús Pérez 9cef9b8d57 refactor: consolidate configuration directories
Merge _configs/ into config/ for single configuration directory.
Update all path references.

Changes:
- Move _configs/* to config/
- Update .gitignore for new patterns
- No code references to _configs/ found

Impact: -1 root directory (layout_conventions.md compliance)
2025-12-26 18:36:23 +00:00

33 lines
614 B
Markdown

# Contributing to SYNTAXIS
Thank you for your interest in contributing to SYNTAXIS!
## Development Setup
1. Clone the repository
2. Install Rust (MSRV 1.75+)
3. Run `cargo check --workspace`
4. Run `cargo test --workspace`
## Code Quality
- Format code: `just fmt`
- Lint code: `just lint`
- Run tests: `just test`
- Full verification: `just check-all`
## Pull Requests
1. Create a feature branch
2. Make your changes
3. Run full verification
4. Submit PR with clear description
## Code Standards
See `.claude/RUST_GUIDELINES.md` for Rust-specific standards.
## Questions?
Open an issue for discussion.