Files
metabuilder/cadquerywrapper/CODE_STYLE.md
T
git a8144a5903 feat: Add CadQuery wrapper library for parametric CAD modeling
Python wrapper around CadQuery for simplified 3D CAD operations with
clean API for creating shapes, performing boolean operations, and
exporting to various formats.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:22:38 +00:00

10 lines
415 B
Markdown

# Code Style Guidelines
This project follows these conventions:
- Keep code PEP 8 compliant. Use `black` formatting with default settings.
- Type annotations are required for all public functions and classes.
- Do not use monkey patching. Any changes to third party libraries must be done via subclassing or wrapper functions instead of modifying objects at runtime.
These rules apply to all code contributions.