Skip to content

Commit ae3cd27

Browse files
committed
chore: update biome
1 parent 176fb62 commit ae3cd27

File tree

46 files changed

+6311
-6396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+6311
-6396
lines changed

apps/cli/src/commands/infrastructure/createTfVarsFileFromEnvironment.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import { writeFile } from 'node:fs/promises'
22
import path from 'node:path'
3-
import { Argument, Command } from '@commander-js/extra-typings'
4-
53
import { output } from '@app/cli/output'
64
import { getDirname } from '@app/config/dirname'
5+
import { Argument, Command } from '@commander-js/extra-typings'
76

87
const { projectStackVariables, projectStackSensitiveVariables } = await import(
98
'@app/cdk/ProjectStack'

apps/cli/src/commands/jobs/executeJobCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {
2-
DeploymentTargetOption,
32
configureDeploymentTarget,
3+
DeploymentTargetOption,
44
} from '@app/cli/deploymentTarget'
55
import { output } from '@app/cli/output'
66
import { executeJob, jobExecutors } from '@app/web/jobs/jobExecutors'

apps/web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"modclean:root": "modclean -Pr -p ./../..",
1212
"start": "next start",
1313
"lint": "biome check src",
14+
"lint:fix": "biome format src && biome check --write src",
1415
"lint:biome": "biome check src",
1516
"tsc": "tsc --noEmit",
1617
"postinstall": "pnpm --silent setup:dsfr && pnpm --silent prisma generate",

apps/web/src/app/(public)/(authentication)/connexion/SigninPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
21
import { AuthCard } from '@app/web/app/(public)/(authentication)/AuthCard'
32
import { signinErrorMessage } from '@app/web/app/(public)/(authentication)/authenticationErrorMessage'
43
import { EmailSigninForm } from '@app/web/app/(public)/(authentication)/connexion/EmailSigninForm'
54
import ProConnectSigninButton from '@app/web/app/(public)/(authentication)/connexion/ProConnectSigninButton'
5+
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
66
import ButtonsGroup from '@codegouvfr/react-dsfr/ButtonsGroup'
77
import type { Route } from 'next'
88

apps/web/src/app/(public)/(authentication)/connexion/erreur/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
21
import { AuthCard } from '@app/web/app/(public)/(authentication)/AuthCard'
32
import Breadcrumbs from '@app/web/components/Breadcrumbs'
3+
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
44
import Link from 'next/link'
55

66
export const dynamic = 'force-dynamic'

apps/web/src/app/(public)/(authentication)/connexion/verification/Verify.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
21
import { AuthCard } from '@app/web/app/(public)/(authentication)/AuthCard'
2+
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
33
import { cookies } from 'next/headers'
44

55
export const Verify = async () => {

apps/web/src/app/(public)/(authentication)/creer-un-compte/SignupPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
21
import { AuthCard } from '@app/web/app/(public)/(authentication)/AuthCard'
32
import { signinErrorMessage } from '@app/web/app/(public)/(authentication)/authenticationErrorMessage'
43
import ProConnectSigninButton from '@app/web/app/(public)/(authentication)/connexion/ProConnectSigninButton'
54
import EmailSignupForm from '@app/web/app/(public)/(authentication)/creer-un-compte/EmailSignupForm'
5+
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
66
import ButtonsGroup from '@codegouvfr/react-dsfr/ButtonsGroup'
77
import { Route } from 'next'
88

apps/web/src/app/(public)/(authentication)/creer-un-compte/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
21
import SignupPanel from '@app/web/app/(public)/(authentication)/creer-un-compte/SignupPanel'
32
import { metadataTitle } from '@app/web/app/metadataTitle'
43
import { getSessionUser } from '@app/web/auth/getSessionUser'
54
import Breadcrumbs from '@app/web/components/Breadcrumbs'
65
import SkipLinksPortal from '@app/web/components/SkipLinksPortal'
6+
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
77
import { getServerUrl } from '@app/web/utils/baseUrl'
88
import { contentId, defaultSkipLinks } from '@app/web/utils/skipLinks'
99
import Alert from '@codegouvfr/react-dsfr/Alert'

apps/web/src/app/(public)/(authentication)/deconnexion/callback/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import {
77
sessionCookie,
88
} from '@app/web/security/authentication'
99
import {
10-
type EncodedState,
1110
decodeSerializableState,
11+
type EncodedState,
1212
} from '@app/web/utils/encodeSerializableState'
1313
import type { NextRequest } from 'next/server'
1414

apps/web/src/app/(public)/accessibilite/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
21
import { metadataTitle } from '@app/web/app/metadataTitle'
32
import Breadcrumbs from '@app/web/components/Breadcrumbs'
43
import SkipLinksPortal from '@app/web/components/SkipLinksPortal'
4+
import { PublicWebAppConfig } from '@app/web/PublicWebAppConfig'
55
import { contentId, defaultSkipLinks } from '@app/web/utils/skipLinks'
66
import type { Metadata } from 'next'
77

0 commit comments

Comments
 (0)