Configuration files should be predictable for every developer and remain maintainable over time.
nvm use/install instructions work consistently. If you use an alias (like an LTS channel), ensure the exact alias form is supported (e.g., correct casing) and document why the alias is used.Example (.nvmrc):
# Pin for predictability
v22.2.0
# Or, if using an alias, ensure it matches what nvm supports
lts/iron
Example (cspell in ESLint config):
// Don’t let words[] grow unbounded—only keep truly shared terms.
// For test/local-only terms, prefer updating the spelling in code,
// adding targeted ignore patterns, or using exclusions rather than expanding the global list.
Enter the URL of a public GitHub repository