Releases: albertodeago/biome-plugin-no-type-assertion
Releases · albertodeago/biome-plugin-no-type-assertion
Release list
v1.1.1
Fixes
code such as
import { A as B, C } from '@lib';is no longer being flagged as a false positive
See /pull/3
Thanks @maroKanatani for the contribution
v1.1.0
Import alias false positives
Code like this below were being flaggeg as an error (by this plugin, because of the as, only in latest biome versions)
import { fun as bar } from "./my-module";Now it's not being flagged as an error anymore, the plugin can correctly distinguish between this as in import and outside of imports statements