Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Latest commit

 

History

History
27 lines (19 loc) · 813 Bytes

File metadata and controls

27 lines (19 loc) · 813 Bytes

Contributing Guidelines

This document outlines the naming conventions and commit message rules for the repository.

Naming

  • Modules and files: use snake_case.
  • Functions and variables: use snake_case.
  • Structs, enums and traits: use CamelCase.
  • Constants: use UPPER_SNAKE_CASE.
  • Avoid unclear abbreviations.
  • Prefer short and descriptive names.

Formatting

  • End every text file with a single blank line.

Commit messages

  • Write messages in English.
  • Use the imperative present tense in the title (e.g. "Add renderer tests").
  • Keep the title under 50 characters.
  • If needed, add a body separated by a blank line explaining the motivation.
  • Reference issues or files when relevant.
  • Group multiple changes with bullet points.
  • Wrap body lines at 72 characters.