Skip to content

Commit dca71e8

Browse files
committed
Fix lint
1 parent 627e355 commit dca71e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/model/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -878,8 +878,8 @@ function hoistPropertyAnnotations (property: model.Property, jsDocs: JSDoc[]): v
878878
property.serverDefault = value
879879
} else {
880880
// JSDoc prevents literal @ in values, but the at sign can be escaped
881-
if (value.startsWith("\\@")) {
882-
value = value.replace("\\@", "@")
881+
if (value.startsWith('\\@')) {
882+
value = value.replace('\\@', '@')
883883
}
884884

885885
switch (property.type.type.name) {

0 commit comments

Comments
 (0)