Skip to content

Releases: albertodeago/biome-plugin-no-type-assertion

v1.1.1

Choose a tag to compare

@albertodeago albertodeago released this 12 May 06:44

Fixes

/issues/2

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

Choose a tag to compare

@albertodeago albertodeago released this 31 Mar 07:32

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

v1.0.1

Choose a tag to compare

@albertodeago albertodeago released this 16 Nov 18:03

fix: just fixed a typo