Skip to content

Commit

Permalink
feat: bump biome to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DASPRiD committed Mar 19, 2024
1 parent 4f90efe commit f7976aa
Show file tree
Hide file tree
Showing 5 changed files with 1,127 additions and 2,191 deletions.
31 changes: 11 additions & 20 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,41 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"$schema": "https://biomejs.dev/schemas/1.6.1/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
"include": [
"biome.json",
"cdk.json",
"release.config.cjs",
"commitlint.config.cjs",
"src/**/*"
]
"include": ["biome.json", "commitlint.config.cjs", "packages/*/src/**/*"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"nursery": {
"noEmptyTypeParameters": "error",
"noInvalidUseBeforeDeclaration": "error",
"noUnusedImports": "error",
"noUnusedPrivateClassMembers": "error",
"noUselessLoneBlockStatements": "error",
"noUselessTernary": "error",
"useExportType": "error",
"useImportType": "error",
"useForOf": "error",
"useGroupedTypeImport": "error"
"noUselessTernary": "error"
},
"complexity": {
"noExcessiveCognitiveComplexity": "warn",
"useSimplifiedLogicExpression": "error"
},
"correctness": {
"noNewSymbol": "error"
"noNewSymbol": "error",
"noUnusedImports": "error",
"noUnusedPrivateClassMembers": "error",
"useHookAtTopLevel": "error"
},
"style": {
"useBlockStatements": "error",
"useCollapsedElseIf": "error",
"useForOf": "error",
"useFragmentSyntax": "error",
"useShorthandArrayType": "error",
"useShorthandAssign": "error",
"useSingleCaseStatement": "error"
},
"suspicious": {
"noApproximativeNumericConstant": "warn",
"noConsoleLog": "error"
"noConsoleLog": "error",
"noEmptyBlockStatements": "error"
}
}
},
Expand Down
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,43 +22,43 @@
"check": "biome check . --apply"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@biomejs/biome": "1.6.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.5",
"@types/semver": "^7.5.6",
"@types/slug": "^5.0.7",
"@types/node": "^20.11.29",
"@types/semver": "^7.5.8",
"@types/slug": "^5.0.8",
"@types/source-map-support": "^0.5.10",
"lefthook": "^1.6.0",
"lefthook": "^1.6.7",
"pkg-types": "^1.0.3",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"dependencies": {
"@aws-cdk/cli-lib-alpha": "2.130.0-alpha.0",
"@aws-sdk/client-acm": "^3.496.0",
"@aws-sdk/client-cloudformation": "^3.496.0",
"@aws-sdk/client-iam": "^3.523.0",
"@aws-sdk/client-s3": "^3.523.0",
"@aws-sdk/client-sts": "^3.496.0",
"@listr2/prompt-adapter-enquirer": "^2.0.1",
"@aws-cdk/cli-lib-alpha": "2.133.0-alpha.0",
"@aws-sdk/client-acm": "^3.535.0",
"@aws-sdk/client-cloudformation": "^3.536.0",
"@aws-sdk/client-iam": "^3.535.0",
"@aws-sdk/client-s3": "^3.536.0",
"@aws-sdk/client-sts": "^3.535.0",
"@listr2/prompt-adapter-enquirer": "^2.0.2",
"@soliantconsulting/bitbucket-cloud-cli-auth": "^1.0.0",
"@soliantconsulting/bitbucket-openid-connect": "^1.1.1",
"auth0": "^4.3.1",
"aws-cdk": "^2.122.0",
"aws-cdk-lib": "^2.130.0",
"aws-cdk": "^2.133.0",
"aws-cdk-lib": "^2.133.0",
"camelcase": "^8.0.0",
"constructs": "^10.3.0",
"deepmerge": "^4.3.1",
"enquirer": "^2.4.1",
"execa": "^8.0.1",
"glob": "^10.3.10",
"handlebars": "^4.7.8",
"listr2": "^8.0.1",
"meow": "^13.1.0",
"semver": "^7.5.4",
"slug": "^8.2.3",
"listr2": "^8.0.2",
"meow": "^13.2.0",
"semver": "^7.6.0",
"slug": "^9.0.0",
"source-map-support": "^0.5.21"
}
}
Loading

0 comments on commit f7976aa

Please sign in to comment.