chore: Chang useImportType
to warn for vue files
vue is only partically supported by biome (see https://biomejs.dev/internals/language-support/) Some components may be incorrectly recognized as type imports
This commit is contained in:
parent
6b89d666af
commit
66dec9c54e
1 changed files with 13 additions and 1 deletions
12
biome.json
12
biome.json
|
@ -11,5 +11,17 @@
|
||||||
"noUselessElse": "off"
|
"noUselessElse": "off"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"include": ["*.vue"],
|
||||||
|
"linter": {
|
||||||
|
"rules": {
|
||||||
|
"style": {
|
||||||
|
"useImportType": "warn"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue