File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
38
38
- [ Docs] ` no-extraneous-dependencies ` : correct peerDependencies option default to ` true ` ([ #1993 ] , thanks [ @dwardu ] )
39
39
- [ Docs] ` order ` : Document options required to match ordering example ([ #1992 ] , thanks [ @silviogutierrez ] )
40
40
- [ Tests] ` no-unresolved ` : add tests for ` import() ` ([ #2012 ] , thanks [ @davidbonnet ] )
41
+ - [ Docs] Add import/recommended ruleset to README ([ #2034 ] , thanks [ @edemaine ] )
41
42
42
43
## [ 2.22.1] - 2020-09-27
43
44
### Fixed
@@ -768,6 +769,7 @@ for info on changes for earlier releases.
768
769
769
770
[ `memo-parser` ] : ./memo-parser/README.md
770
771
772
+ [ #2034 ] : https://github.com/benmosher/eslint-plugin-import/pull/2034
771
773
[ #2026 ] : https://github.com/benmosher/eslint-plugin-import/pull/2026
772
774
[ #2022 ] : https://github.com/benmosher/eslint-plugin-import/pull/2022
773
775
[ #2021 ] : https://github.com/benmosher/eslint-plugin-import/pull/2021
@@ -1366,3 +1368,4 @@ for info on changes for earlier releases.
1366
1368
[ @aladdin-add ] : https://github.com/aladdin-add
1367
1369
[ @davidbonnet ] : https://github.com/davidbonnet
1368
1370
[ @hayes ] : https://github.com/hayes
1371
+ [ @edemaine ] : https://github.com/edemaine
Original file line number Diff line number Diff line change @@ -138,6 +138,8 @@ in your `.eslintrc.(yml|json|js)`, or extend one of the canned configs:
138
138
---
139
139
extends :
140
140
- eslint:recommended
141
+ - plugin:import/recommended
142
+ # alternatively, 'recommended' is the combination of these two rule sets:
141
143
- plugin:import/errors
142
144
- plugin:import/warnings
143
145
@@ -163,8 +165,7 @@ Make sure you have installed [`@typescript-eslint/parser`] which is used in the
163
165
``` yaml
164
166
extends :
165
167
- eslint:recommended
166
- - plugin:import/errors
167
- - plugin:import/warnings
168
+ - plugin:import/recommended
168
169
- plugin:import/typescript # this line does the trick
169
170
` ` `
170
171
You can’t perform that action at this time.
0 commit comments