diff --git a/src/frontend/apps/e2e/__tests__/app-impress/utils-common.ts b/src/frontend/apps/e2e/__tests__/app-impress/utils-common.ts index d7387378a5..2a29cea3fc 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/utils-common.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/utils-common.ts @@ -47,7 +47,7 @@ export const overrideConfig = async ( export const keyCloakSignIn = async ( page: Page, browserName: string, - fromHome: boolean = true, + fromHome = true, ) => { if (fromHome) { await page.getByRole('button', { name: 'Start Writing' }).first().click(); @@ -78,8 +78,8 @@ export const createDoc = async ( page: Page, docName: string, browserName: string, - length: number = 1, - isMobile: boolean = false, + length = 1, + isMobile = false, ) => { const randomDocs = randomName(docName, browserName, length); diff --git a/src/frontend/apps/e2e/__tests__/app-impress/utils-editor.ts b/src/frontend/apps/e2e/__tests__/app-impress/utils-editor.ts index 8bf5f106c4..4c453ab615 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/utils-editor.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/utils-editor.ts @@ -22,6 +22,6 @@ export const writeInEditor = async ({ text: string; }) => { const editor = await getEditor({ page }); - editor.locator('.bn-block-outer').last().fill(text); + await editor.locator('.bn-block-outer').last().fill(text); return editor; }; diff --git a/src/frontend/apps/e2e/__tests__/app-impress/utils-share.ts b/src/frontend/apps/e2e/__tests__/app-impress/utils-share.ts index 3adfd034de..030d8251a6 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/utils-share.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/utils-share.ts @@ -15,7 +15,7 @@ export const addNewMember = async ( page: Page, index: number, role: 'Administrator' | 'Owner' | 'Editor' | 'Reader', - fillText: string = 'user.test', + fillText = 'user.test', ) => { const responsePromiseSearchUser = page.waitForResponse( (response) => diff --git a/src/frontend/apps/e2e/__tests__/app-impress/utils-sub-pages.ts b/src/frontend/apps/e2e/__tests__/app-impress/utils-sub-pages.ts index 16bf849dfb..43d8bd72d2 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/utils-sub-pages.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/utils-sub-pages.ts @@ -11,7 +11,7 @@ export const createRootSubPage = async ( page: Page, browserName: string, docName: string, - isMobile: boolean = false, + isMobile = false, ) => { if (isMobile) { await page diff --git a/src/frontend/apps/impress/src/api/config.ts b/src/frontend/apps/impress/src/api/config.ts index 916585e60f..946b7c9d03 100644 --- a/src/frontend/apps/impress/src/api/config.ts +++ b/src/frontend/apps/impress/src/api/config.ts @@ -18,5 +18,5 @@ export const backendUrl = () => * @param apiVersion - The version of the API (defaults to '1.0'). * @returns The full versioned API base URL as a string. */ -export const baseApiUrl = (apiVersion: string = '1.0') => +export const baseApiUrl = (apiVersion = '1.0') => `${backendUrl()}/api/v${apiVersion}/`; diff --git a/src/frontend/apps/impress/src/features/auth/conf.ts b/src/frontend/apps/impress/src/features/auth/conf.ts index 14bb1d225f..c44fe01884 100644 --- a/src/frontend/apps/impress/src/features/auth/conf.ts +++ b/src/frontend/apps/impress/src/features/auth/conf.ts @@ -1,6 +1,6 @@ import { baseApiUrl } from '@/api'; -export const HOME_URL: string = '/home'; +export const HOME_URL = '/home'; export const LOGIN_URL = `${baseApiUrl()}authenticate/`; export const LOGOUT_URL = `${baseApiUrl()}logout/`; export const PATH_AUTH_LOCAL_STORAGE = 'docs-path-auth'; diff --git a/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteToolBar/MarkdownButton.tsx b/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteToolBar/MarkdownButton.tsx index 3589562121..75a7965d09 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteToolBar/MarkdownButton.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-editor/components/BlockNoteToolBar/MarkdownButton.tsx @@ -22,7 +22,7 @@ function isBlock(block: Block): block is Block { ); } -const recursiveContent = (content: Block[], base: string = '') => { +const recursiveContent = (content: Block[], base = '') => { let fullContent = base; for (const innerContent of content) { if (innerContent.type === 'text') { diff --git a/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-inline-content/Interlinking/InterlinkingLinkInlineContent.tsx b/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-inline-content/Interlinking/InterlinkingLinkInlineContent.tsx index 599d9808af..92e856fc71 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-inline-content/Interlinking/InterlinkingLinkInlineContent.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-inline-content/Interlinking/InterlinkingLinkInlineContent.tsx @@ -56,7 +56,7 @@ const LinkSelected = ({ url, title }: LinkSelectedProps) => { const handleClick = (e: React.MouseEvent) => { e.preventDefault(); - router.push(url); + void router.push(url); }; return ( diff --git a/src/frontend/apps/impress/src/pages/docs/[id]/index.tsx b/src/frontend/apps/impress/src/pages/docs/[id]/index.tsx index 075b241ed8..c9de528b43 100644 --- a/src/frontend/apps/impress/src/pages/docs/[id]/index.tsx +++ b/src/frontend/apps/impress/src/pages/docs/[id]/index.tsx @@ -113,7 +113,9 @@ const DocPage = ({ id }: DocProps) => { // Invalidate when provider store reports a lost connection useEffect(() => { if (hasLostConnection && doc?.id) { - queryClient.invalidateQueries({ queryKey: [KEY_DOC, { id: doc.id }] }); + void queryClient.invalidateQueries({ + queryKey: [KEY_DOC, { id: doc.id }], + }); resetLostConnection(); } }, [hasLostConnection, doc?.id, queryClient, resetLostConnection]); diff --git a/src/frontend/packages/eslint-plugin-docs/typescript.js b/src/frontend/packages/eslint-plugin-docs/typescript.js index 7d98f9f707..c28f058b1a 100644 --- a/src/frontend/packages/eslint-plugin-docs/typescript.js +++ b/src/frontend/packages/eslint-plugin-docs/typescript.js @@ -22,7 +22,9 @@ const typescriptConfig = { '@typescript-eslint': typescriptEslint, }, rules: { + '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-explicit-any': 'error', + '@typescript-eslint/no-floating-promises': 'error', '@typescript-eslint/no-non-null-assertion': 'error', '@typescript-eslint/no-unnecessary-type-assertion': 'error', '@typescript-eslint/no-unsafe-argument': 'error',