style: enable no-non-null-assertion rule (#2723)

Co-authored-by: Peng Xiao <pengxiao@outlook.com>
(cherry picked from commit 18dc427bc3)
This commit is contained in:
LongYinan
2023-06-08 15:23:20 +08:00
committed by himself65
parent 5f634eed21
commit 6dbdc611d5
16 changed files with 196 additions and 147 deletions

View File

@@ -47,8 +47,8 @@ const handleEnter = ({
null
>;
const vEditor = getVirgoByModel(blockRange.models[0]);
const linkInfo = vEditor!
.getDeltasByVRange({
const linkInfo = vEditor
?.getDeltasByVRange({
index: blockRange.startOffset,
length: 0,
})
@@ -70,7 +70,7 @@ const handleEnter = ({
currentBlockIndex + 1
);
vEditor!.deleteText({
vEditor?.deleteText({
index,
length,
});