Skip to content

Commit

Permalink
fix biome formatting to match 1.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousme committed Oct 18, 2024
1 parent ad50f7b commit 834fa8e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/templates/js/service.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { comments } from "../templateUtils.js";

export default (data) => `// implementation of the operations in the openapi specification
export default (
data,
) => `// implementation of the operations in the openapi specification
export class Service {
${data.routes
Expand Down
4 changes: 3 additions & 1 deletion lib/templates/standaloneJS/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export default (data) => `// Fastify plugin autogenerated by fastify-openapi-glue
export default (
data,
) => `// Fastify plugin autogenerated by fastify-openapi-glue
import fastifyPlugin from "fastify-plugin";
import { Security } from "./${data.securityFile}";
Expand Down
4 changes: 3 additions & 1 deletion lib/templates/standaloneJS/service.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { comments } from "../templateUtils.js";

export default (data) => `// implementation of the operations in the openapi specification
export default (
data,
) => `// implementation of the operations in the openapi specification
export class Service {
${data.routes
Expand Down

0 comments on commit 834fa8e

Please sign in to comment.