From 37de39daa7a1c06c541e906200acb768f533fc55 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Fri, 26 Mar 2021 21:54:15 +0900 Subject: [PATCH] :wrench: Edit linter config (disable no-non-null-assertion) --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 200257b..d9d64f0 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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' } }