Skip to content

Commit 882f4ed

Browse files
authored
Merge pull request #102 from github/disable-no-none-null-assertion-rule
Turn off `no-non-null-assertion` rule
2 parents a50a31a + 7bbc89a commit 882f4ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/configs/typescript.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
'@typescript-eslint/array-type': ['error', {default: 'array-simple'}],
77
'@typescript-eslint/no-use-before-define': 'off',
88
'@typescript-eslint/explicit-member-accessibility': 'off',
9-
'@typescript-eslint/explicit-function-return-type': 'off'
9+
'@typescript-eslint/explicit-function-return-type': 'off',
10+
'@typescript-eslint/no-non-null-assertion': 'off'
1011
}
1112
}

0 commit comments

Comments
 (0)