mirror of
https://github.com/chrononeko/chronocat.git
synced 2024-11-21 22:58:10 +00:00
chore: add prettier .vscode config
This commit is contained in:
parent
633e889370
commit
3f6414d624
9
.vscode/settings.json
vendored
Normal file
9
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
|
"[typescript]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
"[javascript]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
}
|
||||||
|
}
|
@ -29,12 +29,17 @@ export type Api = {
|
|||||||
|
|
||||||
const buildNotimpl = (name: string) => {
|
const buildNotimpl = (name: string) => {
|
||||||
const fn = () =>
|
const fn = () =>
|
||||||
l.error(new Error(`没有引擎提供 ${bgMagenta(white(name))}。可能没有加载所需的引擎?`), {
|
l.error(
|
||||||
|
new Error(
|
||||||
|
`没有引擎提供 ${bgMagenta(white(name))}。可能没有加载所需的引擎?`,
|
||||||
|
),
|
||||||
|
{
|
||||||
code: 2159,
|
code: 2159,
|
||||||
throw: true,
|
throw: true,
|
||||||
})
|
},
|
||||||
|
)
|
||||||
|
|
||||||
; (
|
;(
|
||||||
fn as unknown as {
|
fn as unknown as {
|
||||||
[notimplSym]: boolean
|
[notimplSym]: boolean
|
||||||
}
|
}
|
||||||
@ -62,8 +67,11 @@ api.register =
|
|||||||
) => {
|
) => {
|
||||||
const newPriority = priority === -1 ? defaultPriority : priority
|
const newPriority = priority === -1 ? defaultPriority : priority
|
||||||
if (api[method]) {
|
if (api[method]) {
|
||||||
l.warn(`${cyan(engine)}(${newPriority}) 与 ${cyan(api[method].engine)}(${api[method].priority
|
l.warn(
|
||||||
}) 重复注册了方法 ${bgMagenta(white(method))},将采用 ${newPriority > api[method].priority ? engine : api[method].engine} 的版本。`)
|
`${cyan(engine)}(${newPriority}) 与 ${cyan(api[method].engine)}(${
|
||||||
|
api[method].priority
|
||||||
|
}) 重复注册了方法 ${bgMagenta(white(method))},将采用 ${newPriority > api[method].priority ? engine : api[method].engine} 的版本。`,
|
||||||
|
)
|
||||||
|
|
||||||
if (newPriority < api[method].priority) return
|
if (newPriority < api[method].priority) return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user