Shun Miyazawa 8 месяцев назад
Родитель
Сommit
4fef15295d
1 измененных файлов с 2 добавлено и 3 удалено
  1. 2 3
      packages/core/src/interfaces/scope.ts

+ 2 - 3
packages/core/src/interfaces/scope.ts

@@ -108,11 +108,10 @@ const buildScopeConstants = (): ScopeConstantType => {
   const result = {} as Partial<ScopeConstantType>;
   const result = {} as Partial<ScopeConstantType>;
 
 
   const processObject = (
   const processObject = (
-    // biome-ignore lint/suspicious/noExplicitAny: <explanation>
+    // biome-ignore lint/suspicious/noExplicitAny: ignore
     obj: Record<string, any>,
     obj: Record<string, any>,
-    // biome-ignore lint/style/useDefaultParameterLast: <explanation>
     path: string[] = [],
     path: string[] = [],
-    // biome-ignore lint/suspicious/noExplicitAny: <explanation>
+    // biome-ignore lint/suspicious/noExplicitAny: ignore
     resultObj: Record<string, any>,
     resultObj: Record<string, any>,
   ) => {
   ) => {
     for (const [key, value] of Object.entries(obj)) {
     for (const [key, value] of Object.entries(obj)) {