From 01f807c705cc86d7c3ad75cdcc3e9208c3fbb812 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 4 Aug 2021 18:24:42 -0700 Subject: [PATCH] update lint rules --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index a808cbc..c927e0b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,6 +9,8 @@ module.exports = { 'no-console': 'off', 'jsx-quotes': ['error', 'prefer-double'], 'react/jsx-props-no-spreading': 'off', + '@typescript-eslint/no-non-null-assertion': 'off', + 'no-nested-ternary': 'off', }, parserOptions: { ecmaVersion: 2020,