Releases: un-ts/eslint-plugin-import-x
v4.4.2
v4.4.0
Minor Changes
- #169
9c58269
Thanks @teidesu! - Add new rule optioncheckTypedImports
forextensions
, backports import-js#2817
Patch Changes
-
#171
9715220
Thanks @SukkaW! - Perf: avoid regexp during parser choosing -
#171
9715220
Thanks @SukkaW! - Add extra guard for ruleno-named-as-default
. A few guards are borrowed from import-js#3032, but we don't sync the rest of changes from upstream since we have already implemented a way more performant check. -
#171
9715220
Thanks @SukkaW! - More test cases forno-named-export
andno-defualt-export
rule specifically with non-modulesourceType
-
#171
9715220
Thanks @SukkaW! - Fixexport
when there is only oneTSDeclareFunction
(import-js#3065) -
#171
9715220
Thanks @SukkaW! - PreventExportMap
's cache is being tainted by incompatible parser (e.g. oldbabel-eslint
). The cache is now skipped w/ incompatible parsers, which might introduce performance impacts only for those who are using incompatible parsers. (import-js#3062) -
#171
9715220
Thanks @SukkaW! - Docs: fix a few typos here and there -
#168
5de039c
Thanks @hyoban! - Fixes #167, theno-duplicates
rule now allows co-existing inline type imports and namespace imports. -
#171
9715220
Thanks @SukkaW! - Properly fix espree parser w/ ESLint Flat Config
v4.3.1
Patch Changes
- #162
38d0081
Thanks @AaronMoat! - Fix issue whereno-duplicates
rule withprefer-inline
incorrectly marks default type and named type imports as duplicates
v4.3.0
Minor Changes
- #159
4da5388
Thanks @GoodbyeNJN! - feat: add support for using resolver object directly in settings
v4.2.1
Patch Changes
-
#148
d228129
Thanks @SukkaW! - Fixnewline-after-import
'sconsiderComments
options when lintingrequire
, backports import-js#2952 -
#147
eca73ed
Thanks @nchevsky! - Fix regression in ruleno-unused-modules
which would incorrectly initialize optionsrc
to[]
instead of[process.cwd()]
, breaking file discovery. -
#148
d228129
Thanks @SukkaW! - Fixno-duplicates
for TypeScript, backports import-js#3033
v4.2.0
v4.1.1
v4.1.0
Minor Changes
-
#122
cd52e86
Thanks @michaelfaith! - Add ESLint flat configuration presets. You can access them with:import eslintPluginImportX from "eslint-plugin-import-x"; eslintPluginImportX.flatConfigs.recommended; eslintPluginImportX.flatConfigs.react; eslintPluginImportX.flatConfigs.typescript; eslintPluginImportX.flatConfigs.electron;
-
#132
9948c78
Thanks @SukkaW! - Addedno-rename-default
that forbid importing a default export by a different name. Originally created by @whitneyit, ported by @SukkaW
v4.0.0
v3.1.0
Minor Changes
- #116
38aa4cb
Thanks @silverwind! - AddignoreUnusedTypeExports
option tono-unused-modules
Patch Changes
-
#118
0307ff2
Thanks @SukkaW! - Reverts #111. The introduction of SCC causes extra overhead that overcomes the early return it introduced.A new
no-cycle-next
rule is being implemented using the graph. It won't be backward compatible with the current ruleno-cycle
. The currentno-cycle
rule will becomeno-cycle-legacy
in the next major version.