Maintain consistent style in documentation files to improve readability and professionalism. Specifically:

  1. Command references: Use a consistent format when referring to CLI commands. Prefer either:
  2. Punctuation in lists: Follow consistent punctuation rules in bullet lists:

Example:

# Recommended

- `backend.tf`: Your backend configuration
- `main.tf`: Resource and data source blocks
- `variables.tf`: Variable blocks in alphabetical order

# Instead of

- `backend.tf`: Your backend configuration.
- `main.tf`: Resource and data source blocks.
- `variables.tf`: Variable blocks in alphabetical order.

Consistent documentation formatting ensures that users can quickly scan and comprehend content, while maintaining a professional appearance throughout the codebase.