[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-07-31 02:40:25 +00:00
committed by GitHub
parent 6d667b5f13
commit 49dff7d3f3
131 changed files with 2812 additions and 2838 deletions

View File

@@ -189,7 +189,7 @@ type Defines = Record<string, string>;
cc({
source: "hello.c",
define: {
"NDEBUG": "1",
NDEBUG: "1",
},
});
```

View File

@@ -834,7 +834,7 @@ const response = await fetch("s3://my-bucket/my-file.txt", {
endpoint: "https://s3.us-east-1.amazonaws.com",
},
headers: {
"range": "bytes=0-1023",
range: "bytes=0-1023",
},
});
```

View File

@@ -98,7 +98,7 @@ notStrict
You can also use an import attribute to load a database.
```ts
import db from "./mydb.sqlite" with { "type": "sqlite" };
import db from "./mydb.sqlite" with { type: "sqlite" };
console.log(db.query("select * from users LIMIT 1").get());
```