From 747772e401650373adeb926a394687e36c3a8c0c Mon Sep 17 00:00:00 2001 From: Erik Demaine Date: Sun, 25 Apr 2021 09:40:01 -0400 Subject: [PATCH] [Docs] Add import/recommended ruleset to README Fixes #2032 --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7945546a6..8ee4dedd4 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,8 @@ in your `.eslintrc.(yml|json|js)`, or extend one of the canned configs: --- extends: - eslint:recommended + - plugin:import/recommended + # alternatively, 'recommended' is the combination of these two rule sets: - plugin:import/errors - plugin:import/warnings @@ -163,8 +165,7 @@ Make sure you have installed [`@typescript-eslint/parser`] which is used in the ```yaml extends: - eslint:recommended - - plugin:import/errors - - plugin:import/warnings + - plugin:import/recommended - plugin:import/typescript # this line does the trick ```