From 09923af3cab701c39f7de1ea9fe866cfc32aa759 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Thu, 31 Mar 2022 20:46:48 +0800 Subject: [PATCH] Set `template-indent` rule to `error` instead of `warn` (#1781) --- configs/recommended.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/recommended.js b/configs/recommended.js index f10956b75f..820232a9c8 100644 --- a/configs/recommended.js +++ b/configs/recommended.js @@ -113,7 +113,7 @@ module.exports = { // See #1396 'unicorn/require-post-message-target-origin': 'off', 'unicorn/string-content': 'off', - 'unicorn/template-indent': 'warn', + 'unicorn/template-indent': 'error', 'unicorn/text-encoding-identifier-case': 'error', 'unicorn/throw-new-error': 'error', },