From bdda8b2d6a9735942ff80086956675f19c3e0e8c Mon Sep 17 00:00:00 2001 From: Alireza Safaierad Date: Sun, 9 Jun 2024 01:41:07 +0200 Subject: [PATCH] fix: fix missing ts rule --- src/modules/typescript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/typescript.js b/src/modules/typescript.js index 382c1a6..20b2d2a 100644 --- a/src/modules/typescript.js +++ b/src/modules/typescript.js @@ -199,7 +199,7 @@ function typescript(options = {}) { '@typescript-eslint/no-unnecessary-type-arguments': 'error', '@typescript-eslint/no-unnecessary-type-assertion': 'error', '@typescript-eslint/no-unsafe-unary-minus': 'error', - 'no-unnecessary-template-expression': 'warn', + '@typescript-eslint/no-unnecessary-template-expression': 'warn', '@typescript-eslint/non-nullable-type-assertion-style': 'warn', '@typescript-eslint/prefer-includes': 'warn', '@typescript-eslint/prefer-optional-chain': 'warn',