From 0843d7bb6d4e4d5132f681ee8a16eaf0fdc8a74c Mon Sep 17 00:00:00 2001 From: Markus Olsson Date: Thu, 2 Jul 2020 17:35:40 +0200 Subject: [PATCH] Explicitly turn this off for test and script so that we can consider enabling it for the rest of the app --- .eslintrc.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.eslintrc.yml b/.eslintrc.yml index c87b9b91c0..12f83cb2fe 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -144,6 +144,12 @@ overrides: strict: - error - never + - files: 'app/test/**/*' + rules: + '@typescript-eslint/no-non-null-assertion': off + - files: 'script/**/*' + rules: + '@typescript-eslint/no-non-null-assertion': off parserOptions: sourceType: module