From 2d8c40ed4ddf8683c79ff286f202ff836b582f3d Mon Sep 17 00:00:00 2001 From: Karl Rosaen Date: Mon, 26 Jun 2017 10:55:52 -0400 Subject: [PATCH] install eslint v3, compatible with airbnb's config per https://github.com/airbnb/javascript/issues/1454 --- tutorial/02-babel-es6-eslint-flow-jest-husky.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/02-babel-es6-eslint-flow-jest-husky.md b/tutorial/02-babel-es6-eslint-flow-jest-husky.md index b2384aec..057ddf8d 100644 --- a/tutorial/02-babel-es6-eslint-flow-jest-husky.md +++ b/tutorial/02-babel-es6-eslint-flow-jest-husky.md @@ -111,7 +111,7 @@ It should install everything you need and add `eslint-config-airbnb`, `eslint-pl We'll create an NPM/Yarn script to run ESLint. Let's install the `eslint` package to be able to use the `eslint` CLI: -- Run `yarn add --dev eslint` +- Run `yarn add --dev eslint@3` Update the `scripts` of your `package.json` to include a new `test` task: