File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
30
30
### Changed
31
31
- [ Generic Import Callback] Make callback for all imports once in rules ([ #1237 ] , thanks [ @ljqx ] )
32
32
- [ Docs] [ ` no-named-as-default ` ] : add semicolon ([ #1897 ] , thanks [ @bicstone ] )
33
+ - [ Docs] ` no-extraneous-dependencies ` : correct peerDependencies option default to ` true ` ([ #1993 ] , thanks [ @dwardu ] )
33
34
34
35
## [ 2.22.1] - 2020-09-27
35
36
### Fixed
@@ -761,6 +762,7 @@ for info on changes for earlier releases.
761
762
[ `memo-parser` ] : ./memo-parser/README.md
762
763
763
764
[ #1997 ] : https://github.com/benmosher/eslint-plugin-import/pull/1997
765
+ [ #1993 ] : https://github.com/benmosher/eslint-plugin-import/pull/1993
764
766
[ #1983 ] : https://github.com/benmosher/eslint-plugin-import/pull/1983
765
767
[ #1974 ] : https://github.com/benmosher/eslint-plugin-import/pull/1974
766
768
[ #1958 ] : https://github.com/benmosher/eslint-plugin-import/pull/1958
@@ -1344,3 +1346,4 @@ for info on changes for earlier releases.
1344
1346
[ @christianvuerings ] : https://github.com/christianvuerings
1345
1347
[ @devongovett ] : https://github.com/devongovett
1346
1348
[ @s-h-a-d-o-w ] : https://github.com/s-h-a-d-o-w
1349
+ [ @dwardu ] : https://github.com/dwardu
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ image: Visual Studio 2019
16
16
matrix :
17
17
fast_finish : false
18
18
exclude :
19
+ - configuration : WSL
20
+ nodejs_version : " 10"
19
21
- configuration : WSL
20
22
nodejs_version : " 8"
21
23
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