diff --git a/web/packages/next/blob-cache.ts b/web/packages/next/blob-cache.ts index 30c290f8f41c9d6d5e2a8faa7db2f47928e0ce52..8789a507863ad23b596cff34b0407ce924c27c90 100644 --- a/web/packages/next/blob-cache.ts +++ b/web/packages/next/blob-cache.ts @@ -148,7 +148,6 @@ const openOPFSCacheWeb = async (name: BlobCacheNamespace) => { const root = await navigator.storage.getDirectory(); const caches = await root.getDirectoryHandle("cache", { create: true }); - // eslint-disable-next-line @typescript-eslint/no-unused-vars const cache = await caches.getDirectoryHandle(name, { create: true }); return { diff --git a/web/packages/shared/network/HTTPService.ts b/web/packages/shared/network/HTTPService.ts index 350f7f01dde44bbcb10033c5802b51c04123efc2..eda0709f55627f2e91f94f58cb8228861d24c2ec 100644 --- a/web/packages/shared/network/HTTPService.ts +++ b/web/packages/shared/network/HTTPService.ts @@ -125,7 +125,6 @@ class HTTPService { /** * Returns axios interceptors. */ - // eslint-disable-next-line class-methods-use-this public getInterceptors() { return axios.interceptors; } @@ -137,7 +136,6 @@ class HTTPService { * over what was sent in config. */ public async request(config: AxiosRequestConfig, customConfig?: any) { - // eslint-disable-next-line no-param-reassign config.headers = { ...this.headers, ...config.headers, diff --git a/web/packages/shared/themes/components.ts b/web/packages/shared/themes/components.ts index 10e122fe28d00b673ce107919d55a1bd27912cd3..6d8eb38801ce11329f246bc7c451de9298697c65 100644 --- a/web/packages/shared/themes/components.ts +++ b/web/packages/shared/themes/components.ts @@ -2,7 +2,6 @@ import { Shadow, ThemeColorsOptions } from "@mui/material"; import { Components } from "@mui/material/styles/components"; import { TypographyOptions } from "@mui/material/styles/createTypography"; -// eslint-disable-next-line @typescript-eslint/no-unused-vars export const getComponents = ( colors: ThemeColorsOptions, typography: TypographyOptions,