Skip to content

Coding Standards

Duncan Lilley edited this page Mar 24, 2026 · 1 revision

Follow these guidelines to maintain code quality and consistency when contributing to the extension:

General Standards

  • Keep code consistent with nearby style
  • Run lint checks and fix issues
    • Use npm run lint to check for lint issues
    • Resolve auto-fixable issues with npm run lint:fix
  • Avoid introducing new lint errors
  • Prefer small, focused commits with clear messages
  • Add/update tests when fixing bugs or adding features
  • Add CHANGELOG entries when user-facing changes are introduced

Code Style Guide

The style guide for this project is still being developed. In the meantime, please leverage the existing lint rules.

Clone this wiki locally