File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
29
29
### Changed
30
30
- [ Generic Import Callback] Make callback for all imports once in rules ([ #1237 ] , thanks [ @ljqx ] )
31
31
- [ Docs] [ ` no-named-as-default ` ] : add semicolon ([ #1897 ] , thanks [ @bicstone ] )
32
+ - [ Docs] ` no-extraneous-dependencies ` : correct peerDependencies option default to ` true ` ([ #1993 ] , thanks [ @dwardu ] )
32
33
33
34
## [ 2.22.1] - 2020-09-27
34
35
### Fixed
@@ -759,6 +760,7 @@ for info on changes for earlier releases.
759
760
760
761
[ `memo-parser` ] : ./memo-parser/README.md
761
762
763
+ [ #1993 ] : https://github.com/benmosher/eslint-plugin-import/pull/1993
762
764
[ #1983 ] : https://github.com/benmosher/eslint-plugin-import/pull/1983
763
765
[ #1974 ] : https://github.com/benmosher/eslint-plugin-import/pull/1974
764
766
[ #1958 ] : https://github.com/benmosher/eslint-plugin-import/pull/1958
@@ -1340,4 +1342,5 @@ for info on changes for earlier releases.
1340
1342
[ @panrafal ] : https://github.com/panrafal
1341
1343
[ @ttmarek ] : https://github.com/ttmarek
1342
1344
[ @christianvuerings ] : https://github.com/christianvuerings
1343
- [ @devongovett ] : https://github.com/devongovett
1345
+ [ @devongovett ] : https://github.com/devongovett
1346
+ [ @dwardu ] : https://github.com/dwardu
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This rule supports the following options:
13
13
14
14
` optionalDependencies ` : If set to ` false ` , then the rule will show an error when ` optionalDependencies ` are imported. Defaults to ` true ` .
15
15
16
- ` peerDependencies ` : If set to ` false ` , then the rule will show an error when ` peerDependencies ` are imported. Defaults to ` false ` .
16
+ ` peerDependencies ` : If set to ` false ` , then the rule will show an error when ` peerDependencies ` are imported. Defaults to ` true ` .
17
17
18
18
` bundledDependencies ` : If set to ` false ` , then the rule will show an error when ` bundledDependencies ` are imported. Defaults to ` true ` .
19
19
You can’t perform that action at this time.
0 commit comments