diff --git a/front/apps/mobile/tsconfig.json b/front/apps/mobile/tsconfig.json index c4a1038b..be0953e7 100644 --- a/front/apps/mobile/tsconfig.json +++ b/front/apps/mobile/tsconfig.json @@ -1,6 +1,6 @@ { "extends": "expo/tsconfig.base", "compilerOptions": { - "strict": true - } + "strict": true, + }, } diff --git a/front/apps/web/src/i18n.tsx b/front/apps/web/src/i18n.tsx index bf4c6bdc..de8fb655 100644 --- a/front/apps/web/src/i18n.tsx +++ b/front/apps/web/src/i18n.tsx @@ -47,8 +47,8 @@ export const withTranslations = ( ...commonOptions, lng: props.pageProps.__lang, resources: props.pageProps.__resources, - }), - i18next), + }), + i18next), [props.pageProps.__lang, props.pageProps.__resources], ); diff --git a/front/apps/web/tsconfig.json b/front/apps/web/tsconfig.json index 0cd6e2a1..ce0fd788 100755 --- a/front/apps/web/tsconfig.json +++ b/front/apps/web/tsconfig.json @@ -16,9 +16,9 @@ "incremental": true, "baseUrl": ".", "paths": { - "~/*": ["src/*"] - } + "~/*": ["src/*"], + }, }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], } diff --git a/front/packages/models/src/query.tsx b/front/packages/models/src/query.tsx index bd9d0ee1..24ceeab9 100644 --- a/front/packages/models/src/query.tsx +++ b/front/packages/models/src/query.tsx @@ -63,8 +63,8 @@ export const queryFn = async ( "path" in context ? (context.path.filter((x) => x) as string[]) : "pageParam" in context && context.pageParam - ? [context.pageParam as string] - : (context.queryKey.filter((x) => x) as string[]), + ? [context.pageParam as string] + : (context.queryKey.filter((x) => x) as string[]), ) .join("/") .replace("/?", "?"); diff --git a/front/packages/models/tsconfig.json b/front/packages/models/tsconfig.json index 8376e1ef..b8a9f496 100755 --- a/front/packages/models/tsconfig.json +++ b/front/packages/models/tsconfig.json @@ -18,9 +18,9 @@ "incremental": true, "baseUrl": ".", "paths": { - "~/*": ["src/*"] - } + "~/*": ["src/*"], + }, }, "include": ["**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], } diff --git a/front/packages/primitives/src/image/base-image.tsx b/front/packages/primitives/src/image/base-image.tsx index 5a7b7de2..d44dbc68 100644 --- a/front/packages/primitives/src/image/base-image.tsx +++ b/front/packages/primitives/src/image/base-image.tsx @@ -26,7 +26,7 @@ import { YoshikiStyle } from "yoshiki/src/type"; export type YoshikiEnhanced