From 6c3726d8bcd18319843438a72ec499e4674c5356 Mon Sep 17 00:00:00 2001 From: shyambhongle Date: Thu, 14 Mar 2024 11:09:32 +0530 Subject: [PATCH] Allow 'any' type for speed up migration(will be reverted) --- .eslintrc.js | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index bda6f3090..059422f02 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,6 +17,7 @@ module.exports = { rules: { 'react/no-unescaped-entities': 0, 'react-native/no-inline-styles': 0, + "@typescript-eslint/no-explicit-any": ["off"] }, ignorePatterns: [ '**/__mocks__/*.ts', diff --git a/tsconfig.json b/tsconfig.json index 6c61db7e9..571a061d7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "target": "esnext", "module": "commonjs", "lib": ["es2017"], + "noImplicitAny": false, "allowJs": true, "jsx": "react-native", "noEmit": true,