Skip to content

Commit

Permalink
🔧 Edit linter config (disable no-non-null-assertion)
Browse files Browse the repository at this point in the history
  • Loading branch information
Helloyunho committed Mar 26, 2021
1 parent 1cdcf04 commit 37de39d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = {
},
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/restrict-template-expressions': 'off'
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-non-null-assertion': 'off'
}
}

0 comments on commit 37de39d

Please sign in to comment.