From 3a0e21b428f9defafa5a959195dac0453f8ec0ef Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam <gnanakeethan@users.noreply.github.com> Date: Thu, 14 Sep 2023 07:57:41 +0530 Subject: [PATCH] Disable linting for any Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@users.noreply.github.com> --- .eslintrc.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index f95bb333f..7d66a7647 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,12 @@ { - "extends": "./node_modules/gts/" + "extends": "./node_modules/gts/", + "plugins": [ + "@typescript-eslint" + ], + "rules": { + // Override our default settings just for this directory + "eqeqeq": "warn", + "strict": "off", + "@typescript-eslint/no-explicit-any": "off" + } }