Marketplace
Browse and adopt engineering standards, rules, and configurations. Fork to customize for your organization.
Use async/await over callbacks and .then()
javascript
Prefer async/await for asynchronous code: - More readable than callbacks or .then() chains - Easier error handling with try/catch - Works naturally...
Use const and let, never var
javascript
Always use `const` by default, `let` when reassignment is needed: - `const`: Block-scoped, cannot be reassigned - `let`: Block-scoped, can be reass...
Use TypeScript for all new projects
javascript
Always use TypeScript instead of plain JavaScript: - Catch errors at compile time - Better IDE support and refactoring - Self-documenting code - Sa...
Use functional components with hooks
react
Always use functional components with hooks, not class components: - Simpler, less boilerplate - Better TypeScript support - Easier to test - Hooks...