This repository contains tools & guidelines for using JavaScript at Groupon. It represents the best effort to capture the current practices.
For client-side code we depend on babel-preset-env
to ensure that both application-
and library code is compiled down to whatever our targeted browsers support.
We use nlm
to manage our libraries.
This ensures that:
CHANGELOG.md
file as part of its git history.Fortunately there already is a great and well-documented style guide for JavaScript over at airbnb/javascript. It definitely is worth a read and in many ways we're staying fairly close to it.
There's some important differences that are mostly around our focus on sticking to
features natively supported by Node where possible, and a higher bar for rules that
don't support --fix
: If a rule isn't clearly preventing bugs, it has to support
--fix
to be enabled.
Additionally, our file naming convention is kabab-case
. File names should be entirely
in lowercase to avoid any renaming issues with file systems.
Regarding code organization, we generally structure code by domain, not by layer
(todos/model.js
instead of models/todo.js
).
To ensure good automation support, we're also dropping any rules that conflict with prettier's formatting.
We split our rules into three categories:
--fix
.--fix
and shouldn't require human intervention.You may have your .eslintrc
extend groupon/typescript
to get a set of
configs based on our JavaScript lint configs, but with tweaks to work better
with TypeScript (parsing, defaults, etc.).
Version | Tag | Published |
---|---|---|
4.1.2 | latest | 5yrs ago |