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:
Lhcfl 2024-04-04 14:51:31 +08:00
parent 6b89d666af
commit 66dec9c54e
1 changed files with 13 additions and 1 deletions

View File

@ -11,5 +11,17 @@
"noUselessElse": "off"
}
}
}
},
"overrides": [
{
"include": ["*.vue"],
"linter": {
"rules": {
"style": {
"useImportType": "warn"
}
}
}
}
]
}