- Rename REPO_POLICIES.md heading from "Development Policies" to "Repository Policies" to distinguish from code styleguides - Move version line above heading per convention - Add scope statement and links to code styleguide documents - Add missing Makefile and LICENSE to minimum files list - Add version lines to all cross-project docs (CODE_STYLEGUIDE*.md, GO_HTTP_SERVER_CONVENTIONS.md) - Clean up CODE_STYLEGUIDE.md heading (was old repo name) - Update EXISTING_REPO_CHECKLIST.md link text to match new heading
645 B
645 B
Version: 2026-02-22
JavaScript / ECMAScript / ES6
-
Use
constfor everything. If you need to reassign, uselet. Never usevar. -
Use yarn for package management, avoid using npm.
-
Use LTS node versions.
-
Use
prettierfor code formatting, with four spaces for indentation. -
At a minimum,
npm run testandnpm run buildshould work (complete the appropriate scripts inpackage.json). TheMakefileshould call these, do not duplicate the scripts in theMakefile.
Author
License
MIT. See LICENSE.