@spotify/eslint-config
Spotify's TypeScript full ESLint config.
Installation
npm install --save-dev eslint @spotify/eslint-config
Usage
After installing, update your project's ESLint config:
{
"extends" : ["@spotify"]
}
Read the ESlint config docs
for more information.
7.0.0 (2020-04-28)
BREAKING CHANGES
-
running web-scripts without arguments exits code 1 now instead of exiting 0
-
prettier 2.0 may introduce breaking changes
-
prettier 2.0 may introduce breaking changes
-
improvement(web-scripts): make stylecheck and typecheck default for lint
the lint script will now default typechecking and stylechecking to true by default. You may shut
these off with --no-typecheck
and --no-stylecheck
.
- Users who have projects incompatible with TypeScript checks or with projects that
do not user prettier will now fail yarn lint.