Skip to content

Commit 476453f

Browse files
committed
chore: format top-level files
1 parent 14a5c81 commit 476453f

File tree

5 files changed

+22
-10
lines changed

5 files changed

+22
-10
lines changed

biome.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
3-
"assist": { "actions": { "source": { "organizeImports": "on" } } },
3+
"assist": {
4+
"actions": {
5+
"source": {
6+
"organizeImports": "on"
7+
}
8+
}
9+
},
410
"linter": {
511
"enabled": true,
612
"rules": {
@@ -37,7 +43,15 @@
3743
"files": {
3844
"includes": [
3945
"**",
46+
"!**/.cache",
47+
"!**/.claude",
48+
"!**/.vscode",
49+
"!**/.amazonq",
50+
"!**/api",
51+
"!**/site",
52+
"!**/.devcontainer",
4053
"!**/node_modules",
54+
"!**/.tsbuildinfo",
4155
"!**/coverage",
4256
"!**/lib",
4357
"!**/cdk.out",

tsconfig.cjs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"module": "commonjs",
5-
"moduleResolution": "node",
5+
"moduleResolution": "node"
66
}
7-
}
7+
}

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"forceConsistentCasingInFileNames": true,
1717
"strict": true,
1818
"skipLibCheck": true,
19-
"pretty": true, // Enable pretty formatting for output messages.
19+
"pretty": true // Enable pretty formatting for output messages.
2020
},
2121
"files": [],
2222
"references": [
@@ -54,4 +54,4 @@
5454
"path": "./packages/validation"
5555
}
5656
]
57-
}
57+
}

typedoc.base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"**/*.json",
99
"examples/snippets"
1010
]
11-
}
11+
}

typedoc.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
"entryPoints": [
3-
"packages/*"
4-
],
2+
"entryPoints": ["packages/*"],
53
"entryPointStrategy": "packages",
64
"name": "Powertools for AWS Lambda (Typescript) API Reference",
75
"readme": "README.md",
@@ -23,4 +21,4 @@
2321
"inherited": true,
2422
"external": true
2523
}
26-
}
24+
}

0 commit comments

Comments
 (0)