Development uses ESLint to keep code consistent.
- Two-space indentation
- Single quotes for strings
- Semicolons required
Run npm run lint to check formatting. Run npm run format to automatically fix style.
Run npm run depcheck to list unused dependencies.
- Add a changelog entry in
CHANGELOG.mdfor any user-visible change. - Run
npm run formatandnpm testto ensure consistent style and passing tests. - Run
npm run check-undefinedbefore committing.