Skip to content

Commit 97083cc

Browse files
committed
qa: applying biome lint fixes
1 parent 8445cde commit 97083cc

File tree

128 files changed

+636
-4005
lines changed

Some content is hidden

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

128 files changed

+636
-4005
lines changed

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"trailingComma": "all",
5+
"bracketSpacing": true,
6+
"arrowParens": "always",
7+
"endOfLine": "lf"
8+
}

.stylelintrc.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

apps/cli/src/commands/deployment/checkDeploymentStatus.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import { output } from '@app/cli/output'
2+
import { projectTitle } from '@app/config/config'
3+
import { Command } from '@commander-js/extra-typings'
14
import axios from 'axios'
25
import axiosRetry from 'axios-retry'
3-
import { Command } from '@commander-js/extra-typings'
4-
import { projectTitle } from '@app/config/config'
5-
import { output } from '@app/cli/output'
66

77
export const checkDeploymentStatus = new Command()
88
.command('deployment:check-status')

apps/cli/src/commands/github/createGithubDeployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Command } from '@commander-js/extra-typings'
21
import { octokit, owner, repo } from '@app/cli/github'
32
import { output } from '@app/cli/output'
3+
import { Command } from '@commander-js/extra-typings'
44

55
const { computeBranchNamespace } = await import('@app/cdk/utils')
66

apps/cli/src/commands/github/deactivateGithubDeployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Command } from '@commander-js/extra-typings'
21
import { octokit, owner, repo } from '@app/cli/github'
32
import { output } from '@app/cli/output'
3+
import { Command } from '@commander-js/extra-typings'
44

55
const { computeBranchNamespace } = await import('@app/cdk/utils')
66

apps/cli/src/commands/github/updateGithubDeployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Argument, Command } from '@commander-js/extra-typings'
21
import { octokit, owner, repo } from '@app/cli/github'
32
import { output } from '@app/cli/output'
3+
import { Argument, Command } from '@commander-js/extra-typings'
44

55
const DeploymentStates = [
66
'error',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Argument, Command, Option } from '@commander-js/extra-typings'
21
import { appendEnvVariablesToDotEnvFile } from '@app/cli/dotEnvFile'
32
import { output } from '@app/cli/output'
3+
import { Argument, Command, Option } from '@commander-js/extra-typings'
44

55
export const addNextPublicVariablesToDotEnv = new Command()
66
.command('dotenv:add-next-public')

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// eslint-disable-next-line unicorn/prevent-abbreviations
2-
import { Argument, Command } from '@commander-js/extra-typings'
31
import { appendEnvVariablesToDotEnvFile } from '@app/cli/dotEnvFile'
42
import { output } from '@app/cli/output'
3+
// eslint-disable-next-line unicorn/prevent-abbreviations
4+
import { Argument, Command } from '@commander-js/extra-typings'
55

66
const { getCdkOutput } = await import('@app/cdk/getCdkOutput')
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { writeFile } from 'node:fs/promises'
33
import path from 'node:path'
44
import { Argument, Command } from '@commander-js/extra-typings'
55

6-
import { getDirname } from '@app/config/dirname'
76
import { output } from '@app/cli/output'
7+
import { getDirname } from '@app/config/dirname'
88

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// eslint-disable-next-line unicorn/prevent-abbreviations
2-
import { Argument, Command } from '@commander-js/extra-typings'
3-
import { JobValidation } from '@app/web/jobs/jobs'
4-
import { executeJob, jobExecutors } from '@app/web/jobs/jobExecutors'
5-
import { output } from '@app/cli/output'
61
import {
7-
configureDeploymentTarget,
82
DeploymentTargetOption,
3+
configureDeploymentTarget,
94
} from '@app/cli/deploymentTarget'
5+
import { output } from '@app/cli/output'
6+
import { executeJob, jobExecutors } from '@app/web/jobs/jobExecutors'
7+
import { JobValidation } from '@app/web/jobs/jobs'
8+
// eslint-disable-next-line unicorn/prevent-abbreviations
9+
import { Argument, Command } from '@commander-js/extra-typings'
1010

1111
// eslint-disable-next-line unicorn/prevent-abbreviations
1212
export const executeJobCommand = new Command()

0 commit comments

Comments
 (0)