Skip to content

Commit b92bc9c

Browse files
committed
chore: fix lint
1 parent e3dbe93 commit b92bc9c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ export default typegen([
285285
'@typescript-eslint/no-explicit-any': 'off',
286286
'@typescript-eslint/no-empty-object-type': 'off',
287287
'@typescript-eslint/no-namespace': 'off',
288+
'@typescript-eslint/no-non-null-assertion': 'off',
288289
'@typescript-eslint/triple-slash-reference': 'off',
289290
'@typescript-eslint/unified-signatures': 'off',
290291
'@typescript-eslint/ban-ts-comment': [

tests/lib/rules/block-order.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const tester = new RuleTester({
3333
}
3434
})
3535

36-
// @ts-expect-error
36+
// @ts-expect-error rule ts(#2345)
3737
tester.run('block-order', rule, {
3838
valid: [
3939
// default

0 commit comments

Comments
 (0)