From 97575b2087a3371d6223f86960f90eee7426f7c8 Mon Sep 17 00:00:00 2001 From: Pete Pirasis <1pete@users.noreply.github.com> Date: Thu, 27 Oct 2016 03:04:31 +0700 Subject: [PATCH] Fix broken rule reference link `import/first` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 274dd79a..95dc926d 100644 --- a/README.md +++ b/README.md @@ -1239,7 +1239,7 @@ Other Style Guides - [10.7](#modules--imports-first) Put all `import`s above non-import statements. - eslint: [`import/imports-first`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/imports-first.md) + eslint: [`import/first`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md) > Why? Since `import`s are hoisted, keeping them all at the top prevents surprising behavior. ```javascript