Skip to content

Commit a0d5ba5

Browse files
authored
Merge branch 'main' into fix/issue-2941-allow-empty-chunk-name
2 parents 42fadfe + 6f0668c commit a0d5ba5

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
66

77
## [Unreleased]
88

9+
### Changed
10+
- [Docs] `no-extraneous-dependencies`: Make glob pattern description more explicit ([#2944], thanks [@mulztob])
11+
912
## [2.29.1] - 2023-12-14
1013

1114
### Fixed
@@ -1101,6 +1104,7 @@ for info on changes for earlier releases.
11011104

11021105
[`memo-parser`]: ./memo-parser/README.md
11031106

1107+
[#2944]: https://github.com/import-js/eslint-plugin-import/pull/2944
11041108
[#2919]: https://github.com/import-js/eslint-plugin-import/pull/2919
11051109
[#2884]: https://github.com/import-js/eslint-plugin-import/pull/2884
11061110
[#2854]: https://github.com/import-js/eslint-plugin-import/pull/2854
@@ -1835,6 +1839,7 @@ for info on changes for earlier releases.
18351839
[@mplewis]: https://github.com/mplewis
18361840
[@mrmckeb]: https://github.com/mrmckeb
18371841
[@msvab]: https://github.com/msvab
1842+
[@mulztob]: https://github.com/mulztob
18381843
[@mx-bernhard]: https://github.com/mx-bernhard
18391844
[@Nfinished]: https://github.com/Nfinished
18401845
[@nickofthyme]: https://github.com/nickofthyme
@@ -1843,9 +1848,9 @@ for info on changes for earlier releases.
18431848
[@ntdb]: https://github.com/ntdb
18441849
[@nwalters512]: https://github.com/nwalters512
18451850
[@ombene]: https://github.com/ombene
1846-
[@Pandemic1617]: https://github.com/Pandemic1617
18471851
[@ota-meshi]: https://github.com/ota-meshi
18481852
[@OutdatedVersion]: https://github.com/OutdatedVersion
1853+
[@Pandemic1617]: https://github.com/Pandemic1617
18491854
[@panrafal]: https://github.com/panrafal
18501855
[@paztis]: https://github.com/paztis
18511856
[@pcorpet]: https://github.com/pcorpet

docs/rules/no-extraneous-dependencies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You can also use an array of globs instead of literal booleans:
3232
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.js", "**/*.spec.js"]}]
3333
```
3434

35-
When using an array of globs, the setting will be set to `true` (no errors reported) if the name of the file being linted matches a single glob in the array, and `false` otherwise.
35+
When using an array of globs, the setting will be set to `true` (no errors reported) if the name of the file being linted (i.e. not the imported file/module) matches a single glob in the array, and `false` otherwise.
3636

3737
There are 2 boolean options to opt into checking extra imports that are normally ignored: `includeInternal`, which enables the checking of internal modules, and `includeTypes`, which enables checking of type imports in TypeScript.
3838

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"jackspeak": "=2.1.1",
8989
"linklocal": "^2.8.2",
9090
"lodash.isarray": "^4.0.0",
91-
"markdownlint-cli": "^0.38.0",
91+
"markdownlint-cli": "~0.35",
9292
"mocha": "^3.5.3",
9393
"npm-which": "^3.0.1",
9494
"nyc": "^11.9.0",

0 commit comments

Comments
 (0)