From b129d5aa1238ad143c045a4b0f5253e904abe7b5 Mon Sep 17 00:00:00 2001 From: Gabriel Caires Date: Thu, 17 Oct 2024 11:32:38 +0100 Subject: [PATCH] Turn on rule to warn missing import type --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 73ab459704128..c490f2157141f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -152,7 +152,7 @@ module.exports = { '@typescript-eslint/no-var-requires': 'off', // REST API objects include underscores '@typescript-eslint/camelcase': 'off', - + '@typescript-eslint/consistent-type-imports': 'warn', // TypeScript compiler already takes care of these errors 'import/no-extraneous-dependencies': 'off', 'import/named': 'off',