Files
metabuilder/libraries/cadquerywrapper/CODE_STYLE.md
2026-03-09 22:30:41 +00:00

415 B

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.