From 02b4db0a3fdd242b4941b6aeb070313d06911514 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 20 Jan 2021 05:45:06 -0600 Subject: [PATCH] chore: update eslint rules --- .eslintrc.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index fdda5d6a..f9435074 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,4 +1,8 @@ { "extends": "eslint-config-atomic", "ignorePatterns": ["dist/", "node_modules/", "spec/fixtures"] + "rules": { + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-non-null-assertion": "off" + } }