Explorar el Código

fix(crowi): add biome-ignore comment for async onShutdown method

Ryu Sato hace 1 semana
padre
commit
bce536750e
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      apps/app/src/server/crowi/index.ts

+ 1 - 0
apps/app/src/server/crowi/index.ts

@@ -660,6 +660,7 @@ class Crowi {
         await mongoose.disconnect();
         return;
       },
+      // biome-ignore lint/suspicious/useAwait: onShutdown should be async
       onShutdown: async () => {
         logger.info('Cleanup finished, server is shutting down');
       },