From cc7392fdb516b3f529cd70ac36504d0286e24110 Mon Sep 17 00:00:00 2001 From: Sanjeev Lakhwani Date: Mon, 26 Aug 2024 13:29:15 -0400 Subject: [PATCH] Modified consistent type import rule fixStyle: 'inline-type-imports' --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 8047f5ae..11f37d61 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -27,7 +27,7 @@ module.exports = { 'no-unused-vars': 'off', // disable no-unused-vars since @typescript-eslint/no-unused-vars does the same '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], // enable @typescript-eslint/no-unused-vars '@typescript-eslint/no-non-null-assertion': 'off', - '@typescript-eslint/consistent-type-imports': 'error', + '@typescript-eslint/consistent-type-imports': ['error', { fixStyle: 'inline-type-imports' }], 'comma-dangle': [ 'error', {