Skip to content

Commit c7171d9

Browse files
Fixup ts nocheck (#308)
Not sure what I was thinking, but `@ts-nocheck` only works with line comments and not block comment syntax. Sorry for not catching that earlier. Co-authored-by: MTRNord <[email protected]>
1 parent fa4884f commit c7171d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/ubrn_bindgen/src/bindings/gen_typescript/templates/wrapper-ffi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
/* tslint:disable */
55
/* eslint-disable */
6-
/* @ts-nocheck */
6+
// @ts-nocheck
77

88
import {
99
type StructuralEquality as UniffiStructuralEquality,

crates/ubrn_bindgen/src/bindings/gen_typescript/templates/wrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
/* tslint:disable */
55
/* eslint-disable */
6-
/* @ts-nocheck */
6+
// @ts-nocheck
77

88
{%- if flavor.is_jsi() %}
99
import nativeModule, {

0 commit comments

Comments
 (0)