apply Prettier fixes

This commit is contained in:
Pig Fang 2022-02-05 16:24:37 +08:00
parent e0bbc2f3f5
commit b8205cd71f
No known key found for this signature in database
GPG Key ID: A8198F548DADA9E2

View File

@ -38,25 +38,34 @@ export class RootAnimation {
export function createOrbitControls() {
return {
dispose() {}
dispose() {},
}
}
export const WalkingAnimation = new Proxy({}, {
get() {
return jest.fn()
}
})
export const RunningAnimation = new Proxy({}, {
get() {
return jest.fn()
}
})
export const RotatingAnimation = new Proxy({}, {
get() {
return jest.fn()
}
})
export const WalkingAnimation = new Proxy(
{},
{
get() {
return jest.fn()
},
},
)
export const RunningAnimation = new Proxy(
{},
{
get() {
return jest.fn()
},
},
)
export const RotatingAnimation = new Proxy(
{},
{
get() {
return jest.fn()
},
},
)
export function isSlimSkin() {
return false