Skip to content

Commit

Permalink
Merge branch 'master' into no-unused-modules_destructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
s-h-a-d-o-w committed May 12, 2021
2 parents a6a85cc + d31d615 commit fee7248
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -30,6 +30,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
### Changed
- [Generic Import Callback] Make callback for all imports once in rules ([#1237], thanks [@ljqx])
- [Docs] [`no-named-as-default`]: add semicolon ([#1897], thanks [@bicstone])
- [Docs] `no-extraneous-dependencies`: correct peerDependencies option default to `true` ([#1993], thanks [@dwardu])

## [2.22.1] - 2020-09-27
### Fixed
Expand Down Expand Up @@ -761,6 +762,7 @@ for info on changes for earlier releases.
[`memo-parser`]: ./memo-parser/README.md

[#1997]: https://github.com/benmosher/eslint-plugin-import/pull/1997
[#1993]: https://github.com/benmosher/eslint-plugin-import/pull/1993
[#1983]: https://github.com/benmosher/eslint-plugin-import/pull/1983
[#1974]: https://github.com/benmosher/eslint-plugin-import/pull/1974
[#1958]: https://github.com/benmosher/eslint-plugin-import/pull/1958
Expand Down Expand Up @@ -1344,3 +1346,4 @@ for info on changes for earlier releases.
[@christianvuerings]: https://github.com/christianvuerings
[@devongovett]: https://github.com/devongovett
[@s-h-a-d-o-w]: https://github.com/s-h-a-d-o-w
[@dwardu]: https://github.com/dwardu
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -16,6 +16,8 @@ image: Visual Studio 2019
matrix:
fast_finish: false
exclude:
- configuration: WSL
nodejs_version: "10"
- configuration: WSL
nodejs_version: "8"

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-extraneous-dependencies.md
Expand Up @@ -13,7 +13,7 @@ This rule supports the following options:

`optionalDependencies`: If set to `false`, then the rule will show an error when `optionalDependencies` are imported. Defaults to `true`.

`peerDependencies`: If set to `false`, then the rule will show an error when `peerDependencies` are imported. Defaults to `false`.
`peerDependencies`: If set to `false`, then the rule will show an error when `peerDependencies` are imported. Defaults to `true`.

`bundledDependencies`: If set to `false`, then the rule will show an error when `bundledDependencies` are imported. Defaults to `true`.

Expand Down

0 comments on commit fee7248

Please sign in to comment.