From fadce950f91aaf2c1da076f5fe5d31c4fdc1dd02 Mon Sep 17 00:00:00 2001 From: liujuping Date: Mon, 26 Dec 2022 11:13:13 +0800 Subject: [PATCH] chore: eslint add no-unexpected-multiline rule --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 5a8fe9e97..1455cdfd4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -40,5 +40,6 @@ module.exports = { "@typescript-eslint/no-useless-constructor": 0, '@typescript-eslint/dot-notation': 0, // for lint performance '@typescript-eslint/restrict-plus-operands': 0, // for lint performance + 'no-unexpected-multiline': 1, } };