Skip to content

Commit 710e9f2

Browse files
committed
chore: run biome fix
1 parent 5392e81 commit 710e9f2

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

biome.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"files": {
44
"maxSize": 1572864,
5-
"ignore": [
6-
"node_modules",
7-
"dist",
8-
".cache",
9-
"coverage",
10-
"html",
11-
"package.json"
5+
"includes": [
6+
"**",
7+
"!**/node_modules",
8+
"!**/dist",
9+
"!**/.cache",
10+
"!**/coverage",
11+
"!**/html",
12+
"!**/package.json"
1213
]
1314
},
1415
"vcs": {
@@ -22,7 +23,5 @@
2223
"formatter": {
2324
"enabled": true
2425
},
25-
"organizeImports": {
26-
"enabled": true
27-
}
26+
"assist": { "actions": { "source": { "organizeImports": "on" } } }
2827
}

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
export * from "./middleware";
12
export * from "./types/config";
2-
export * from "./types/viewer-info";
33
export * from "./types/inference";
4-
export * from "./middleware";
4+
export * from "./types/viewer-info";
55

66
import type { CloudFrontViewerInfo } from "./types/viewer-info";
77

src/types/inference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { CloudFrontViewerConfig } from "./config";
21
import type {
2+
CloudFrontViewerConfig,
33
DeviceTypeConfig,
44
LocationConfig,
55
NetworkConfig,

0 commit comments

Comments
 (0)