You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the output structure, the default deno linter complains about the generated queries not using await. Adding // deno-lint-ignore-file require-await
to each generated file would prevent this error.
The text was updated successfully, but these errors were encountered:
Just a friendly ping that this is still an issue. The merged PR is adding a deno-lint-ignore-file for the file, but it's after an import type statement. This causes deno to ignore it. The line doesn't have to be at the top, but does need to be before any statements. See the deno docs for details.
I can try this minor fix if nobody else is looking at it.
Due to the output structure, the default deno linter complains about the generated queries not using await. Adding
// deno-lint-ignore-file require-await
to each generated file would prevent this error.
The text was updated successfully, but these errors were encountered: