Skip to content

Commit

Permalink
Add ts-nocheck to allow unused variables in code
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-hiller committed May 7, 2023
1 parent 6b388a1 commit 15678f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-nocheck
/* eslint-disable @typescript-eslint/no-unused-vars */
import { $, component$ } from '@builder.io/qwik';
import { routeLoader$, z } from '@builder.io/qwik-city';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ If we now put all the building blocks together, we get a working login form. Bel

<CodeSandbox src="/src/routes/demo/integration/modular-forms/index.tsx">
```tsx
// @ts-nocheck
/* eslint-disable @typescript-eslint/no-unused-vars */
import { $, component$ } from '@builder.io/qwik';
import { routeLoader$, z } from '@builder.io/qwik-city';
Expand Down

0 comments on commit 15678f6

Please sign in to comment.