Skip to content

Commit

Permalink
Merge pull request #102 from github/disable-no-none-null-assertion-rule
Browse files Browse the repository at this point in the history
Turn off `no-non-null-assertion` rule
  • Loading branch information
koddsson committed Mar 24, 2020
2 parents a50a31a + 7bbc89a commit 882f4ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/configs/typescript.js
Expand Up @@ -6,6 +6,7 @@ module.exports = {
'@typescript-eslint/array-type': ['error', {default: 'array-simple'}],
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/explicit-function-return-type': 'off'
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-non-null-assertion': 'off'
}
}

0 comments on commit 882f4ed

Please sign in to comment.