Skip to content

Commit a572b7d

Browse files
yamcodesCopilot
andcommitted
fix: satisfy autofix formatting
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent d48d38e commit a572b7d

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
// Generated from apps/playgrounds/*/package.json arkenvExamples metadata.
5858
"description": "Disable sync-generated example apps",
5959
"matchFileNames": [
60-
// BEGIN GENERATED SYNC EXAMPLES
60+
// BEGIN GENERATED SYNC EXAMPLES
6161
"examples/basic/**",
6262
"examples/basic-js/**",
6363
"examples/with-bun/**",
@@ -68,7 +68,7 @@
6868
"examples/with-solid-start/**",
6969
"examples/with-standard-schema/**",
7070
"examples/with-vite-react/**"
71-
// END GENERATED SYNC EXAMPLES
71+
// END GENERATED SYNC EXAMPLES
7272
],
7373
"enabled": false
7474
},

scripts/sync-examples.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ function main() {
8787

8888
if (syncRenovateConfig(generatedExampleNames, checkOnly)) {
8989
hasChanges = true;
90-
console.log("\n ✗ Renovate config is out of sync with playground metadata.");
90+
console.log(
91+
"\n ✗ Renovate config is out of sync with playground metadata.",
92+
);
9193
}
9294

9395
if (checkOnly) {

scripts/sync-lib/renovate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ const END_MARKER = "// END GENERATED SYNC EXAMPLES";
88

99
function generatedMatchFileNames(exampleNames) {
1010
return [
11-
`\t\t\t${START_MARKER}`,
11+
`\t\t\t\t${START_MARKER}`,
1212
...exampleNames.flatMap((name, index) => [
1313
`\t\t\t\t"examples/${name}/**"${index === exampleNames.length - 1 ? "" : ","}`,
1414
]),
15-
`\t\t\t${END_MARKER}`,
15+
`\t\t\t\t${END_MARKER}`,
1616
].join("\n");
1717
}
1818

0 commit comments

Comments
 (0)